python311Packages.asf-search: add tenacity

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