Merge pull request #48914 from lsix/add_pythonPackages_owslib

pythonPackages.owslib: init at 0.17.0
This commit is contained in:
Lancelot SIX 2018-11-06 15:37:53 +01:00 committed by GitHub
commit 1aed180d73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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