blob: 43ea7bdba8a7d9b2994634ff287f7c4d0f34fc6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{ lib
, buildPythonPackage
, click-plugins
, colorama
, fetchPypi
, pythonOlder
, requests
, setuptools
, tldextract
, xlsxwriter
}:
buildPythonPackage rec {
pname = "shodan";
version = "1.31.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-xzJ1OG6gI5DhlsNcZgcGoo3U1TfFoh6zh6tiNvrCUfY=";
};
propagatedBuildInputs = [
click-plugins
colorama
requests
setuptools
tldextract
xlsxwriter
];
# The tests require a shodan api key, so skip them.
doCheck = false;
pythonImportsCheck = [
"shodan"
];
meta = with lib; {
description = "Python library and command-line utility for Shodan";
mainProgram = "shodan";
homepage = "https://github.com/achillean/shodan-python";
changelog = "https://github.com/achillean/shodan-python/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab lihop ];
};
}
|