pythonPackages.GitPython: set path to git executable
This commit is contained in:
parent
e3875883cc
commit
cb7f7fd094
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, gitdb2, mock, nose, ddt }:
|
{ lib, buildPythonPackage, fetchPypi, git, gitdb2, mock, nose, ddt }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "2.1.9";
|
version = "2.1.9";
|
||||||
|
@ -12,6 +12,10 @@ buildPythonPackage rec {
|
||||||
checkInputs = [ mock nose ddt ];
|
checkInputs = [ mock nose ddt ];
|
||||||
propagatedBuildInputs = [ gitdb2 ];
|
propagatedBuildInputs = [ gitdb2 ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
sed -i "s|^refresh()$|refresh(path='${git}/bin/git')|" git/__init__.py
|
||||||
|
'';
|
||||||
|
|
||||||
# Tests require a git repo
|
# Tests require a git repo
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue