Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 22 lines 675 B view raw
1{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest, pyyaml } : 2buildPythonPackage rec { 3 pname = "OWSLib"; 4 version = "0.23.0"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "0a03a9978673f377df45107024e2aae006f85afe7ef7bf4640ef663167a4386f"; 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}