about summary refs log tree commit diff
path: root/pkgs/development/python-modules/arrow
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-25 00:19:26 -0700
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-27 16:26:56 +0100
commitb63ef1ae0b60b0017067ccafd52d967bc2027ef6 (patch)
treeced9dc2844fb8fd262359227a71c595ca785c4e0 /pkgs/development/python-modules/arrow
parent4e5fa8d6d3b0a0b08505ca2e1586f820048549a4 (diff)
pythonPackages.arrow: fix build
Diffstat (limited to 'pkgs/development/python-modules/arrow')
-rw-r--r--pkgs/development/python-modules/arrow/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/arrow/default.nix b/pkgs/development/python-modules/arrow/default.nix
index 8557842c94472..bf3dcb869f989 100644
--- a/pkgs/development/python-modules/arrow/default.nix
+++ b/pkgs/development/python-modules/arrow/default.nix
@@ -1,6 +1,6 @@
 { stdenv, buildPythonPackage, fetchPypi
 , nose, chai, simplejson, backports_functools_lru_cache
-, dateutil, pytz
+, dateutil, pytz, mock, dateparser
 }:
 
 buildPythonPackage rec {
@@ -17,7 +17,7 @@ buildPythonPackage rec {
   '';
 
   checkInputs = [ nose chai simplejson pytz ];
-  propagatedBuildInputs = [ dateutil backports_functools_lru_cache ];
+  propagatedBuildInputs = [ dateutil backports_functools_lru_cache mock dateparser];
 
   postPatch = ''
     substituteInPlace setup.py --replace "==1.2.1" ""