pythonPackages.OWSLib: init at 0.17.0

This commit is contained in:
Lancelot SIX 2018-10-23 22:12:21 +02:00
parent f3f155023c
commit 93c7503adb
No known key found for this signature in database
GPG key ID: 02E1542BA66FB047
2 changed files with 24 additions and 0 deletions

View 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/;
};
}

View file

@ -4435,6 +4435,8 @@ in {
};
};
owslib = callPackage ../development/python-modules/owslib { };
PyICU = buildPythonPackage rec {
name = "PyICU-2.0.3";