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