nixpkgs/pkgs/development/python-modules/owslib/default.nix
R. RyanTM 569a11b400 python37Packages.owslib: 0.17.1 -> 0.18.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-owslib/versions
2019-07-02 06:32:14 -07:00

23 lines
646 B
Nix

{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest } :
buildPythonPackage rec {
pname = "OWSLib";
version = "0.18.0";
src = fetchPypi {
inherit pname version;
sha256 = "018p2ypmpbbcgl0hp92s0vig1wirh41lj0wy62aafn5050pmqr7m";
};
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/;
};
}