3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/awkward/default.nix

36 lines
719 B
Nix
Raw Normal View History

{ lib
2018-10-25 16:25:48 +01:00
, buildPythonPackage
, fetchPypi
, numpy
, pandas
, pyarrow
, pytestrunner
, pytest
, h5py
2018-10-25 16:25:48 +01:00
}:
buildPythonPackage rec {
pname = "awkward";
2019-04-16 18:15:34 +01:00
version = "0.8.15";
2018-10-25 16:25:48 +01:00
src = fetchPypi {
inherit pname version;
2019-04-16 18:15:34 +01:00
sha256 = "0d1ae42babfe7fdde324eea685c71ecc638132b2015ffa22687d52d36dc1c78b";
2018-10-25 16:25:48 +01:00
};
nativeBuildInputs = [ pytestrunner ];
checkInputs = [ pandas pyarrow pytest h5py ];
2018-10-25 16:25:48 +01:00
propagatedBuildInputs = [ numpy ];
checkPhase = ''
py.test
'';
meta = with lib; {
description = "Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy";
2018-10-25 16:25:48 +01:00
homepage = https://github.com/scikit-hep/awkward-array;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}