pythonPackages.arrow: fix build
This commit is contained in:
parent
4e5fa8d6d3
commit
b63ef1ae0b
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
, nose, chai, simplejson, backports_functools_lru_cache
|
, nose, chai, simplejson, backports_functools_lru_cache
|
||||||
, dateutil, pytz
|
, dateutil, pytz, mock, dateparser
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs = [ nose chai simplejson pytz ];
|
checkInputs = [ nose chai simplejson pytz ];
|
||||||
propagatedBuildInputs = [ dateutil backports_functools_lru_cache ];
|
propagatedBuildInputs = [ dateutil backports_functools_lru_cache mock dateparser];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace setup.py --replace "==1.2.1" ""
|
substituteInPlace setup.py --replace "==1.2.1" ""
|
||||||
|
|
Loading…
Reference in New Issue