linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyshp / default.nix
blob3cb56247b5534f0397d9f403307c324f2c1b7bfc
1 { lib, buildPythonPackage, fetchPypi
2 , setuptools }:
4 buildPythonPackage rec {
5   version = "2.1.3";
6   pname = "pyshp";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "e32b4a6832a3b97986df442df63b4c4a7dcc846b326c903189530a5cc6df0260";
11   };
13   buildInputs = [ setuptools ];
15   meta = with lib; {
16     description = "Pure Python read/write support for ESRI Shapefile format";
17     homepage = "https://github.com/GeospatialPython/pyshp";
18     license = licenses.mit;
19   };