summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-11-21 12:37:32 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-11-21 15:02:33 +0100
commite459cf2c3272fd5e48396d3516c8f9762ff83518 (patch)
treecdca806a056cf21ad373ed420c510db1420aa0c7
parentd08965eda2fa4107af04f9839d460a3fd1372d90 (diff)
python311Packages.asf-search: add tenacity
-rw-r--r--pkgs/development/python-modules/asf-search/default.nix33
1 files changed, 16 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/asf-search/default.nix b/pkgs/development/python-modules/asf-search/default.nix
index a5177a6b7e187..69c452ecb153b 100644
--- a/pkgs/development/python-modules/asf-search/default.nix
+++ b/pkgs/development/python-modules/asf-search/default.nix
@@ -1,18 +1,19 @@
 { lib
 , buildPythonPackage
+, dateparser
+, defusedxml
 , fetchFromGitHub
-, pythonOlder
-, requests
-, shapely
-, python-dateutil
-, pytz
 , importlib-metadata
 , numpy
-, dateparser
-, remotezip
 , pytestCheckHook
+, python-dateutil
+, pythonOlder
+, pytz
+, remotezip
+, requests
 , requests-mock
-, defusedxml
+, shapely
+, tenacity
 }:
 
 buildPythonPackage rec {
@@ -30,23 +31,21 @@ buildPythonPackage rec {
   };
 
   propagatedBuildInputs = [
-    requests
-    shapely
-    python-dateutil
-    pytz
+    dateparser
     importlib-metadata
     numpy
-    dateparser
+    python-dateutil
+    pytz
     remotezip
+    requests
+    shapely
   ];
 
   nativeCheckInputs = [
+    defusedxml
     pytestCheckHook
-  ];
-
-  checkInputs = [
     requests-mock
-    defusedxml
+    tenacity
   ];
 
   pythonImportsCheck = [