pythonPackages.pyshp: init at 1.2.3

This commit is contained in:
Mate Kovacs 2016-01-16 00:37:19 -08:00
parent 4a860b8fbf
commit 60dcdac5c2

View file

@ -15448,6 +15448,24 @@ in modules // {
};
};
pyshp = buildPythonPackage rec {
name = "pyshp-${version}";
version = "1.2.3";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/pyshp/pyshp-${version}.tar.gz";
sha256 = "e18cc19659dadc5ddaa891eb780a6958094da0cf105a1efe0f67e75b4fa1cdf9";
};
buildInputs = with self; [ setuptools ];
meta = {
description = "Pure Python read/write support for ESRI Shapefile format";
homepage = https://github.com/GeospatialPython/pyshp;
license = licenses.mit;
};
};
pyx = buildPythonPackage rec {
name = "pyx-${version}";
version = "0.14.1";