1{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest, pyyaml } :
2buildPythonPackage rec {
3 pname = "OWSLib";
4 version = "0.20.0";
5
6 src = fetchPypi {
7 inherit pname version;
8 sha256 = "334988857b260c8cdf1f6698d07eab61839c51acb52ee10eed1275439200a40e";
9 };
10
11 buildInputs = [ pytest ];
12 propagatedBuildInputs = [ dateutil pyproj pytz requests pyyaml ];
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}