2021-07-03 12:37:24 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, python-dateutil, requests, pytz, pyproj , pytest, pyyaml } :
|
2018-10-23 21:12:21 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "OWSLib";
|
2021-06-18 22:47:28 +01:00
|
|
|
version = "0.24.1";
|
2018-10-23 21:12:21 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 22:47:28 +01:00
|
|
|
sha256 = "4973c2ba65ec850a3fcc1fb94cefe5ed2fed83aaf2a5e2135c78810ad2a8f0e1";
|
2018-10-23 21:12:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytest ];
|
2021-07-03 12:37:24 +01:00
|
|
|
propagatedBuildInputs = [ python-dateutil pyproj pytz requests pyyaml ];
|
2018-10-23 21:12:21 +01:00
|
|
|
|
|
|
|
# '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;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.osgeo.org/projects/owslib/";
|
2018-10-23 21:12:21 +01:00
|
|
|
};
|
|
|
|
}
|