2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2017-08-31 15:03:02 +01:00
|
|
|
, setuptools }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-02-20 09:09:14 +00:00
|
|
|
version = "2.1.3";
|
2017-08-31 15:03:02 +01:00
|
|
|
pname = "pyshp";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 09:09:14 +00:00
|
|
|
sha256 = "e32b4a6832a3b97986df442df63b4c4a7dcc846b326c903189530a5cc6df0260";
|
2017-08-31 15:03:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ setuptools ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-08-31 15:03:02 +01:00
|
|
|
description = "Pure Python read/write support for ESRI Shapefile format";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/GeospatialPython/pyshp";
|
2017-08-31 15:03:02 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|