eda8c04e20
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
21 lines
477 B
Nix
21 lines
477 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, setuptools }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.1.0";
|
|
pname = "pyshp";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1h75a5fisqqj48m6wq7jhdxv6arjg3mvnr5q404pvfbjscj7yp76";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|