2018-10-23 21:12:21 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest } :
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "OWSLib";
|
2019-07-02 14:32:14 +01:00
|
|
|
version = "0.18.0";
|
2018-10-23 21:12:21 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-02 14:32:14 +01:00
|
|
|
sha256 = "018p2ypmpbbcgl0hp92s0vig1wirh41lj0wy62aafn5050pmqr7m";
|
2018-10-23 21:12:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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/;
|
|
|
|
};
|
|
|
|
}
|