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