23 lines
660 B
Nix
23 lines
660 B
Nix
{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest } :
|
|
buildPythonPackage rec {
|
|
pname = "OWSLib";
|
|
version = "0.19.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "605a742d088f1ed9c946e824d0b3be94b5256931f8b230dae63e27a52c781b6d";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
propagatedBuildInputs = [ dateutil pyproj pytz requests ];
|
|
|
|
# '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/";
|
|
};
|
|
}
|