nixpkgs/pkgs/development/python-modules/pyshp/default.nix

21 lines
481 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi
, setuptools }:
buildPythonPackage rec {
2020-10-15 22:32:51 +01:00
version = "2.1.2";
pname = "pyshp";
src = fetchPypi {
inherit pname version;
2020-10-15 22:32:51 +01:00
sha256 = "a0aa668cd0fc09b873f10facfe96971c0496b7fe4f795684d96cc7306ac5841c";
};
buildInputs = [ setuptools ];
meta = with lib; {
description = "Pure Python read/write support for ESRI Shapefile format";
homepage = "https://github.com/GeospatialPython/pyshp";
license = licenses.mit;
};
}