pythonPackages.arrow: fix build

This commit is contained in:
Jonathan Ringer 2019-10-25 00:19:26 -07:00 committed by Frederik Rietdijk
parent 4e5fa8d6d3
commit b63ef1ae0b
1 changed files with 2 additions and 2 deletions

View File

@ -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" ""