nixpkgs/pkgs/development/python-modules/pyproj/default.nix

39 lines
940 B
Nix
Raw Normal View History

2017-05-04 16:56:25 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
2017-05-04 16:56:25 +00:00
, python
, nose2
, cython
, proj ? null
2017-05-04 16:56:25 +00:00
}:
buildPythonPackage (rec {
2017-05-04 16:56:25 +00:00
pname = "pyproj";
version = "unstable-2018-11-13";
2017-05-04 16:56:25 +00:00
src = fetchFromGitHub {
owner = "jswhit";
repo = pname;
rev = "78540f5ff40da92160f80860416c91ee74b7643c";
sha256 = "1vq5smxmpdjxialxxglsfh48wx8kaq9sc5mqqxn4fgv1r5n1m3n9";
2017-05-04 16:56:25 +00:00
};
buildInputs = [ cython ];
checkInputs = [ nose2 ];
2017-05-04 16:56:25 +00:00
checkPhase = ''
runHook preCheck
pushd unittest # changing directory should ensure we're importing the global pyproj
${python.interpreter} test.py && ${python.interpreter} -c "import doctest, pyproj, sys; sys.exit(doctest.testmod(pyproj)[0])"
popd
runHook postCheck
'';
2017-05-04 16:56:25 +00:00
meta = {
description = "Python interface to PROJ.4 library";
homepage = https://github.com/jswhit/pyproj;
2017-05-04 16:56:25 +00:00
license = with lib.licenses; [ isc ];
};
} // (if proj == null then {} else { PROJ_DIR = proj; }))