My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyshp/default.nix

20 lines
468 B

{ lib, buildPythonPackage, fetchPypi
, setuptools }:
buildPythonPackage rec {
version = "2.3.0";
pname = "pyshp";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-glBk6kA6zxNehGz4sJJEmUMOa+HNN6DzS+cTCQZhfTw=";
};
buildInputs = [ setuptools ];
meta = with lib; {
description = "Pure Python read/write support for ESRI Shapefile format";
homepage = "https://github.com/GeospatialPython/pyshp";
license = licenses.mit;
};
}