2017-08-31 16:03:02 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
, setuptools }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-01-17 00:04:57 +01:00
|
|
|
version = "2.0.1";
|
2017-08-31 16:03:02 +02:00
|
|
|
pname = "pyshp";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-17 00:04:57 +01:00
|
|
|
sha256 = "049xj760s75nkvs7rhz710a6x3lvvfajddknmfz1vkf2p3f2l2as";
|
2017-08-31 16:03:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|