mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
pythonPackages.OWSLib: init at 0.17.0
This commit is contained in:
parent
f3f155023c
commit
93c7503adb
22
pkgs/development/python-modules/owslib/default.nix
Normal file
22
pkgs/development/python-modules/owslib/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest } :
|
||||
buildPythonPackage rec {
|
||||
pname = "OWSLib";
|
||||
version = "0.17.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1px2nmbpbpp556kjq0ym0a7j24nbvs4w829727b2gr4a4ff86hxc";
|
||||
};
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
propagatedBuildInputs = [ dateutil pyproj pytz requests ];
|
||||
|
||||
# 'tests' dir not included in pypy distribution archive.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "client for Open Geospatial Consortium web service interface standards";
|
||||
license = licenses.bsd3;
|
||||
homepage = https://www.osgeo.org/projects/owslib/;
|
||||
};
|
||||
}
|
@ -4435,6 +4435,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
owslib = callPackage ../development/python-modules/owslib { };
|
||||
|
||||
PyICU = buildPythonPackage rec {
|
||||
name = "PyICU-2.0.3";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user