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

buildPythonPackage rec {
  version = "1.2.12";
  pname = "pyshp";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8dcd65e0aa2aa2951527ddb7339ea6e69023543d8a20a73fc51e2829b9ed6179";
  };

  buildInputs = [ setuptools ];

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