2018-12-02 13:15:02 +00:00
|
|
|
{ lib
|
2018-10-25 16:25:48 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, numpy
|
2019-04-04 16:47:55 +01:00
|
|
|
, pandas
|
2018-12-02 13:15:02 +00:00
|
|
|
, pytestrunner
|
|
|
|
, pytest
|
|
|
|
, h5py
|
2018-10-25 16:25:48 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "awkward";
|
2020-08-16 18:30:50 +01:00
|
|
|
version = "0.13.0";
|
2018-10-25 16:25:48 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:30:50 +01:00
|
|
|
sha256 = "1a461ee084ea5e98333dacf2506e9b2619ee89cece14b9b99830b546b35c5922";
|
2018-10-25 16:25:48 +01:00
|
|
|
};
|
|
|
|
|
2019-03-05 11:57:28 +00:00
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
2020-05-12 22:19:37 +01:00
|
|
|
checkInputs = [ pandas pytest h5py ];
|
2018-10-25 16:25:48 +01:00
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
|
2019-03-05 11:57:28 +00:00
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
2018-12-02 13:15:02 +00:00
|
|
|
meta = with lib; {
|
2019-03-05 11:57:28 +00:00
|
|
|
description = "Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/scikit-hep/awkward-array";
|
2018-10-25 16:25:48 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|