about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyshp/default.nix
blob: 3cb56247b5534f0397d9f403307c324f2c1b7bfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi
, setuptools }:

buildPythonPackage rec {
  version = "2.1.3";
  pname = "pyshp";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e32b4a6832a3b97986df442df63b4c4a7dcc846b326c903189530a5cc6df0260";
  };

  buildInputs = [ setuptools ];

  meta = with lib; {
    description = "Pure Python read/write support for ESRI Shapefile format";
    homepage = "https://github.com/GeospatialPython/pyshp";
    license = licenses.mit;
  };
}