nixpkgs/pkgs/development/python-modules/shodan/default.nix
R. RyanTM a27e401a89 python37Packages.shodan: 1.11.1 -> 1.12.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-shodan/versions
2019-04-15 22:43:50 -07:00

36 lines
685 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, click-plugins
, colorama
, requests
, XlsxWriter
}:
buildPythonPackage rec {
pname = "shodan";
version = "1.12.1";
src = fetchPypi {
inherit pname version;
sha256 = "0fd68yaqhpay7jxhyc6xkdrak88wdblxs0phgdkngbakx2yaw2y3";
};
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 ];
};
}