From e459cf2c3272fd5e48396d3516c8f9762ff83518 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Nov 2023 12:37:32 +0100 Subject: [PATCH] python311Packages.asf-search: add tenacity --- .../python-modules/asf-search/default.nix | 35 +++++++++---------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/pkgs/development/python-modules/asf-search/default.nix b/pkgs/development/python-modules/asf-search/default.nix index a5177a6b7e18..69c452ecb153 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 = [ - pytestCheckHook - ]; - - checkInputs = [ - requests-mock defusedxml + pytestCheckHook + requests-mock + tenacity ]; pythonImportsCheck = [