pythonPackages.pyproj: 1.9.5.1 -> unstable-2018-11-13 (#50982)
Allows us to build pyproj with python3.7. See: https://github.com/jswhit/pyproj/issues/136
This commit is contained in:
parent
21f6996529
commit
a339dda0d4
@ -1,21 +1,26 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchFromGitHub
|
||||||
, python
|
, python
|
||||||
, nose2
|
, nose2
|
||||||
|
, cython
|
||||||
, proj ? null
|
, proj ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage (rec {
|
buildPythonPackage (rec {
|
||||||
pname = "pyproj";
|
pname = "pyproj";
|
||||||
version = "1.9.5.1";
|
version = "unstable-2018-11-13";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "jswhit";
|
||||||
sha256 = "53fa54c8fa8a1dfcd6af4bf09ce1aae5d4d949da63b90570ac5ec849efaf3ea8";
|
repo = pname;
|
||||||
|
rev = "78540f5ff40da92160f80860416c91ee74b7643c";
|
||||||
|
sha256 = "1vq5smxmpdjxialxxglsfh48wx8kaq9sc5mqqxn4fgv1r5n1m3n9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ nose2 ];
|
buildInputs = [ cython ];
|
||||||
|
|
||||||
|
checkInputs = [ nose2 ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
runHook preCheck
|
runHook preCheck
|
||||||
|
Loading…
Reference in New Issue
Block a user