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