pythonPackages.awkward: 0.8.7 -> 0.8.14, enable more tests

This commit is contained in:
Dmitry Kalinkin 2019-04-04 11:47:55 -04:00
parent d956f2279b
commit 671c673a90
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -2,6 +2,8 @@
, buildPythonPackage
, fetchPypi
, numpy
, pandas
, pyarrow
, pytestrunner
, pytest
, h5py
@ -9,15 +11,15 @@
buildPythonPackage rec {
pname = "awkward";
version = "0.8.7";
version = "0.8.14";
src = fetchPypi {
inherit pname version;
sha256 = "0a53c484za2l4yy1i05qhkylvygg8fnh4j1v3n35x2dsi929awdp";
sha256 = "1mf8ddxn7bdlhic5xcd8nvskp3cmyv8vk2hz52hb7faixsgvgj18";
};
nativeBuildInputs = [ pytestrunner ];
checkInputs = [ pytest h5py ];
checkInputs = [ pandas pyarrow pytest h5py ];
propagatedBuildInputs = [ numpy ];
checkPhase = ''