1{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest } :
2buildPythonPackage rec {
3 pname = "OWSLib";
4 version = "0.17.1";
5
6 src = fetchPypi {
7 inherit pname version;
8 sha256 = "19dm6dxj9hsiq0bnb4d6ms3sh2hcss9d9fhpjgkwxzrw9mlzvrxj";
9 };
10
11 buildInputs = [ pytest ];
12 propagatedBuildInputs = [ dateutil pyproj pytz requests ];
13
14 # 'tests' dir not included in pypy distribution archive.
15 doCheck = false;
16
17 meta = with lib; {
18 description = "client for Open Geospatial Consortium web service interface standards";
19 license = licenses.bsd3;
20 homepage = https://www.osgeo.org/projects/owslib/;
21 };
22}