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