pythonPackages.shodan: init at 1.10.4 (#54871)
This commit is contained in:
parent
5e84459160
commit
714b785909
35
pkgs/development/python-modules/shodan/default.nix
Normal file
35
pkgs/development/python-modules/shodan/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, click-plugins
|
||||
, colorama
|
||||
, requests
|
||||
, XlsxWriter
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "shodan";
|
||||
version = "1.10.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "13966vqxww7v2b5hf2kjismdzvqyjvxlcdvpkzpbsrpxy9pvn2n4";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click-plugins
|
||||
colorama
|
||||
requests
|
||||
XlsxWriter
|
||||
];
|
||||
|
||||
# The tests require a shodan api key, so skip them.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library and command-line utility for Shodan";
|
||||
homepage = https://github.com/achillean/shodan-python;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lihop ];
|
||||
};
|
||||
}
|
@ -4034,6 +4034,8 @@ in {
|
||||
|
||||
simplegeneric = callPackage ../development/python-modules/simplegeneric { };
|
||||
|
||||
shodan = callPackage ../development/python-modules/shodan { };
|
||||
|
||||
should-dsl = callPackage ../development/python-modules/should-dsl { };
|
||||
|
||||
simplejson = callPackage ../development/python-modules/simplejson { };
|
||||
|
Loading…
Reference in New Issue
Block a user