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

36 lines
707 B
Nix
Raw Normal View History

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