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
1
{ lib
2
2
, buildPythonPackage
3
3
+
, dateparser
4
4
+
, defusedxml
3
5
, fetchFromGitHub
4
4
-
, pythonOlder
5
5
-
, requests
6
6
-
, shapely
6
6
+
, importlib-metadata
7
7
+
, numpy
8
8
+
, pytestCheckHook
7
9
, python-dateutil
10
10
+
, pythonOlder
8
11
, pytz
9
9
-
, importlib-metadata
10
10
-
, numpy
11
11
-
, dateparser
12
12
, remotezip
13
13
-
, pytestCheckHook
13
13
+
, requests
14
14
, requests-mock
15
15
-
, defusedxml
15
15
+
, shapely
16
16
+
, tenacity
16
17
}:
17
18
18
19
buildPythonPackage rec {
···
30
31
};
31
32
32
33
propagatedBuildInputs = [
33
33
-
requests
34
34
-
shapely
35
35
-
python-dateutil
36
36
-
pytz
34
34
+
dateparser
37
35
importlib-metadata
38
36
numpy
39
39
-
dateparser
37
37
+
python-dateutil
38
38
+
pytz
40
39
remotezip
40
40
+
requests
41
41
+
shapely
41
42
];
42
43
43
44
nativeCheckInputs = [
45
45
+
defusedxml
44
46
pytestCheckHook
45
45
-
];
46
46
-
47
47
-
checkInputs = [
48
47
requests-mock
49
49
-
defusedxml
48
48
+
tenacity
50
49
];
51
50
52
51
pythonImportsCheck = [