linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / owslib / default.nix
blob92a78ce0cf3fdb56889f553339ee1d18069e3866
1 { lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest, pyyaml } :
2 buildPythonPackage rec {
3   pname = "OWSLib";
4   version = "0.21.0";
6   src = fetchPypi {
7     inherit pname version;
8     sha256 = "408d40b3a6a210bcb3f3609b607960eeedaa63ffd574dde7896906691c354814";
9   };
11   buildInputs = [ pytest ];
12   propagatedBuildInputs = [ dateutil pyproj pytz requests pyyaml ];
14   # 'tests' dir not included in pypy distribution archive.
15   doCheck = false;
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   };