nixpkgs/pkgs/development/python-modules/awkward/default.nix
Dmitry Kalinkin 2255919b89
pythonPackages.awkward: disable arrow support
It appears that upstream doesn't want to support this anymore:
220bd8df4b
2020-05-12 17:19:37 -04:00

35 lines
692 B
Nix

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