pythonPackages.shodan: init at 1.10.4 (#54871)

This commit is contained in:
Leroy Hopson 2019-02-07 19:14:36 +07:00 committed by Robert Schütz
parent 5e84459160
commit 714b785909
2 changed files with 37 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };