nixpkgs/pkgs/development/python-modules/awkward/default.nix

34 lines
684 B
Nix
Raw Normal View History

{ lib
2018-10-25 16:25:48 +01:00
, buildPythonPackage
, fetchPypi
, numpy
, pytestrunner
, pytest
, h5py
2018-10-25 16:25:48 +01:00
}:
buildPythonPackage rec {
pname = "awkward";
2019-02-14 07:37:11 +00:00
version = "0.8.4";
2018-10-25 16:25:48 +01:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:11 +00:00
sha256 = "7016dc02d15b8797b59a461ccc8d218f37c335b97fa6b376638c0edd4ffc9de2";
2018-10-25 16:25:48 +01:00
};
nativeBuildInputs = [ pytestrunner ];
checkInputs = [ 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 ];
};
}