mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
pythonPackages.asf_search: init at 3.0.6 (#157504)
* pythonPackages.asf_search: init at 3.0.6 * Update pkgs/development/python-modules/asf-search/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> * Update pkgs/development/python-modules/asf-search/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> * Update pkgs/development/python-modules/asf-search/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
e9acfd1fb1
commit
660ac5bf60
26
pkgs/development/python-modules/asf-search/default.nix
Normal file
26
pkgs/development/python-modules/asf-search/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, pytz, shapely, importlib-metadata, requests, python-dateutil }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "asf_search";
|
||||
version = "3.0.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "asfadmin";
|
||||
repo = "Discovery-asf_search";
|
||||
rev = "v${version}";
|
||||
sha256 = "1jzah2l1db1p2mv59w9qf0x3a9hk6s5rzy0jnp2smsddvyxfwcyn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pytz shapely importlib-metadata requests python-dateutil ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -667,6 +667,8 @@ in {
|
||||
|
||||
ase = callPackage ../development/python-modules/ase { };
|
||||
|
||||
asf-search = callPackage ../development/python-modules/asf-search { };
|
||||
|
||||
asgi-csrf = callPackage ../development/python-modules/asgi-csrf { };
|
||||
|
||||
asgineer = callPackage ../development/python-modules/asgineer { };
|
||||
|
Loading…
Reference in New Issue
Block a user