Skip to content

Commit

Permalink
Merge pull request NixOS#268967 from fabaff/asf-search-fix
Browse files Browse the repository at this point in the history
python311Packages.asf-search: add tenacity
  • Loading branch information
fabaff authored Nov 21, 2023
2 parents 64d24d4 + e459cf2 commit e1d09cc
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions pkgs/development/python-modules/asf-search/default.nix
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -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 = [
Expand Down

0 comments on commit e1d09cc

Please sign in to comment.