mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, dateparser
|
|
, fetchFromGitHub
|
|
, importlib-metadata
|
|
, numpy
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, pytz
|
|
, requests
|
|
, requests-mock
|
|
, shapely
|
|
, wktutils
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asf-search";
|
|
version = "5.0.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "asfadmin";
|
|
repo = "Discovery-asf_search";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Jynks+c8OV0t1GoKAk4vP9jYQ0PclJHl3x8q78au5gk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dateparser
|
|
importlib-metadata
|
|
numpy
|
|
python-dateutil
|
|
pytz
|
|
requests
|
|
shapely
|
|
wktutils
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
requests-mock
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "WKTUtils==" "WKTUtils>="
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"asf_search"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for the ASF SearchAPI";
|
|
homepage = "https://github.com/asfadmin/Discovery-asf_search";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ bzizou ];
|
|
};
|
|
}
|