tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.asf-search: add tenacity
Fabian Affolter
2 years ago
e459cf2c
d08965ed
+16
-17
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
asf-search
default.nix
+16
-17
pkgs/development/python-modules/asf-search/default.nix
···
1
{ lib
2
, buildPythonPackage
0
0
3
, fetchFromGitHub
4
-
, pythonOlder
5
-
, requests
6
-
, shapely
7
, python-dateutil
0
8
, pytz
9
-
, importlib-metadata
10
-
, numpy
11
-
, dateparser
12
, remotezip
13
-
, pytestCheckHook
14
, requests-mock
15
-
, defusedxml
0
16
}:
17
18
buildPythonPackage rec {
···
30
};
31
32
propagatedBuildInputs = [
33
-
requests
34
-
shapely
35
-
python-dateutil
36
-
pytz
37
importlib-metadata
38
numpy
39
-
dateparser
0
40
remotezip
0
0
41
];
42
43
nativeCheckInputs = [
0
44
pytestCheckHook
45
-
];
46
-
47
-
checkInputs = [
48
requests-mock
49
-
defusedxml
50
];
51
52
pythonImportsCheck = [
···
1
{ lib
2
, buildPythonPackage
3
+
, dateparser
4
+
, defusedxml
5
, fetchFromGitHub
6
+
, importlib-metadata
7
+
, numpy
8
+
, pytestCheckHook
9
, python-dateutil
10
+
, pythonOlder
11
, pytz
0
0
0
12
, remotezip
13
+
, requests
14
, requests-mock
15
+
, shapely
16
+
, tenacity
17
}:
18
19
buildPythonPackage rec {
···
31
};
32
33
propagatedBuildInputs = [
34
+
dateparser
0
0
0
35
importlib-metadata
36
numpy
37
+
python-dateutil
38
+
pytz
39
remotezip
40
+
requests
41
+
shapely
42
];
43
44
nativeCheckInputs = [
45
+
defusedxml
46
pytestCheckHook
0
0
0
47
requests-mock
48
+
tenacity
49
];
50
51
pythonImportsCheck = [