nixpkgs/pkgs/development/python-modules/pyshp/default.nix
R. RyanTM 849726f760 python37Packages.pyshp: 1.2.12 -> 2.0.0 (#52105)
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-pyshp/versions
2018-12-14 21:15:44 +01:00

21 lines
477 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, setuptools }:
buildPythonPackage rec {
version = "2.0.0";
pname = "pyshp";
src = fetchPypi {
inherit pname version;
sha256 = "0l5a28878vplwclqvjj7v0xx6zlr03ia1dkq5hc3mxf05bahiwyz";
};
buildInputs = [ setuptools ];
meta = with stdenv.lib; {
description = "Pure Python read/write support for ESRI Shapefile format";
homepage = https://github.com/GeospatialPython/pyshp;
license = licenses.mit;
};
}