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:
commit
bbe83c0520
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in New Issue