nixpkgs/pkgs/development/python-modules/owslib/default.nix

23 lines
675 B
Nix
Raw Normal View History

2020-06-04 02:56:20 +02:00
{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest, pyyaml } :
2018-10-23 22:12:21 +02:00
buildPythonPackage rec {
pname = "OWSLib";
version = "0.24.1";
2018-10-23 22:12:21 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "4973c2ba65ec850a3fcc1fb94cefe5ed2fed83aaf2a5e2135c78810ad2a8f0e1";
2018-10-23 22:12:21 +02:00
};
buildInputs = [ pytest ];
2020-06-04 02:56:20 +02:00
propagatedBuildInputs = [ dateutil pyproj pytz requests pyyaml ];
2018-10-23 22:12:21 +02:00
# 'tests' dir not included in pypy distribution archive.
doCheck = false;
meta = with lib; {
description = "client for Open Geospatial Consortium web service interface standards";
license = licenses.bsd3;
homepage = "https://www.osgeo.org/projects/owslib/";
2018-10-23 22:12:21 +02:00
};
}