Merge pull request #58969 from veprbl/pr/awkward_0_8_14

pythonPackages.awkward: 0.8.7 -> 0.8.14, enable more tests
This commit is contained in:
worldofpeace 2019-04-11 04:55:17 -04:00 committed by GitHub
commit bbe83c0520
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

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 = ''