pythonPackages.pyproj: init at 1.9.5.1

This commit is contained in:
Frederik Rietdijk 2017-05-04 18:56:25 +02:00
parent 69dd1200c7
commit 77fba4a112
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, proj
, python
}:
buildPythonPackage rec {
pname = "pyproj";
version = "1.9.5.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "53fa54c8fa8a1dfcd6af4bf09ce1aae5d4d949da63b90570ac5ec849efaf3ea8";
};
buildInputs = [ proj ];
# Could not get tests working
doCheck = false;
meta = {
description = "Python interface to PROJ.4 library";
homepage = http://github.com/jswhit/pyproj;
license = with lib.licenses; [ isc ];
};
}

View File

@ -20214,6 +20214,8 @@ in {
pyopencl = callPackage ../development/python-modules/pyopencl { };
pyproj = callPackage ../development/python-modules/pyproj { };
pyrr = buildPythonPackage rec {
name = "pyrr-${version}";
version = "0.7.2";