2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2017-08-31 15:03:02 +01:00
|
|
|
, setuptools }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-10-15 22:32:51 +01:00
|
|
|
version = "2.1.2";
|
2017-08-31 15:03:02 +01:00
|
|
|
pname = "pyshp";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-15 22:32:51 +01:00
|
|
|
sha256 = "a0aa668cd0fc09b873f10facfe96971c0496b7fe4f795684d96cc7306ac5841c";
|
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;
|
|
|
|
};
|
|
|
|
}
|