tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.shodan: 1.24.0 -> 1.25.0
Fabian Affolter
5 years ago
a5f0f5de
f0a821af
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
shodan
default.nix
+3
-2
pkgs/development/python-modules/shodan/default.nix
···
10
10
11
11
buildPythonPackage rec {
12
12
pname = "shodan";
13
13
-
version = "1.24.0";
13
13
+
version = "1.25.0";
14
14
15
15
src = fetchPypi {
16
16
inherit pname version;
17
17
-
sha256 = "0b5ec40c954cd48c4e3234e81ad92afdc68438f82ad392fed35b7097eb77b6dd";
17
17
+
sha256 = "sha256-fivdvBtgv2IAQtABD0t2KoC0MRHb6pwEHXLUMl4mDCM=";
18
18
};
19
19
20
20
propagatedBuildInputs = [
···
27
27
28
28
# The tests require a shodan api key, so skip them.
29
29
doCheck = false;
30
30
+
pythonImportsCheck = [ "shodan" ];
30
31
31
32
meta = with lib; {
32
33
description = "Python library and command-line utility for Shodan";