Merge pull request #250335 from fabaff/shodan-bump

python311Packages.shodan: 1.29.1 -> 1.30.0
This commit is contained in:
Matthias Beyer
2023-08-20 15:56:53 +02:00
committed by GitHub
@@ -1,24 +1,25 @@
{ lib
, fetchPypi
, buildPythonPackage
, click-plugins
, colorama
, fetchPypi
, pythonOlder
, requests
, setuptools
, pythonOlder
, tldextract
, xlsxwriter
}:
buildPythonPackage rec {
pname = "shodan";
version = "1.29.1";
version = "1.30.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-4q9iVOGdKo+k6Slzi+VR4l3Hqvw5RzLndufjD6RM4zk=";
hash = "sha256-yWF8ZsR7h9SAHnCAtsdp7Jox2jmN7+CwR6Z5SSdDZFM=";
};
propagatedBuildInputs = [
@@ -26,6 +27,7 @@ buildPythonPackage rec {
colorama
requests
setuptools
tldextract
xlsxwriter
];
@@ -41,6 +43,6 @@ buildPythonPackage rec {
homepage = "https://github.com/achillean/shodan-python";
changelog = "https://github.com/achillean/shodan-python/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ lihop ];
maintainers = with maintainers; [ fab lihop ];
};
}