pythonPackages.pyproj: init at 1.9.5.1
This commit is contained in:
parent
69dd1200c7
commit
77fba4a112
28
pkgs/development/python-modules/pyproj/default.nix
Normal file
28
pkgs/development/python-modules/pyproj/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -20214,6 +20214,8 @@ in {
|
|||||||
|
|
||||||
pyopencl = callPackage ../development/python-modules/pyopencl { };
|
pyopencl = callPackage ../development/python-modules/pyopencl { };
|
||||||
|
|
||||||
|
pyproj = callPackage ../development/python-modules/pyproj { };
|
||||||
|
|
||||||
pyrr = buildPythonPackage rec {
|
pyrr = buildPythonPackage rec {
|
||||||
name = "pyrr-${version}";
|
name = "pyrr-${version}";
|
||||||
version = "0.7.2";
|
version = "0.7.2";
|
||||||
|
Loading…
Reference in New Issue
Block a user