pandas: 0.20.3 -> 0.21.0

Now needs 'moto' to complete tests.
This commit is contained in:
Matthieu Coudron 2017-10-31 03:08:36 +09:00
parent 66b63d2f5a
commit d22a1f6abc

View File

@ -8,6 +8,7 @@
, cython
, dateutil
, scipy
, moto
, numexpr
, pytz
, xlrd
@ -27,12 +28,12 @@ let
inherit (stdenv) isDarwin;
in buildPythonPackage rec {
pname = "pandas";
version = "0.20.3";
version = "0.21.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "a777e07633d83d546c55706420179551c8e01075b53c497dcf8ae4036766bc66";
sha256 = "0nf50ls2cnlsd2635nyji7l70xc91dw81qg5y01g5sifwwqcpmaw";
};
LC_ALL = "en_US.UTF-8";
@ -64,6 +65,7 @@ in buildPythonPackage rec {
"['pandas/src/klib', 'pandas/src', '$cpp_sdk']"
'';
checkInputs = [ moto ];
checkPhase = ''
runHook preCheck
''