nixpkgs/pkgs/development/python-modules/pyshp/default.nix
R. RyanTM 5d6b38f22b python37Packages.pyshp: 2.0.0 -> 2.0.1
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
2019-01-17 09:16:27 +01:00

21 lines
477 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, setuptools }:
buildPythonPackage rec {
version = "2.0.1";
pname = "pyshp";
src = fetchPypi {
inherit pname version;
sha256 = "049xj760s75nkvs7rhz710a6x3lvvfajddknmfz1vkf2p3f2l2as";
};
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;
};
}