nixpkgs/pkgs/development/python-modules/awkward1/default.nix
Dmitry Kalinkin 6270712773 pythonPackages.awkward1: 0.2.22 -> 0.2.23
This fixes the build. The 0.2.23 is the last version compatible with
numba 0.49.
2020-06-15 15:17:02 -07:00

36 lines
748 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, cmake
, numba
, numpy
, pytestCheckHook
, rapidjson
}:
buildPythonPackage rec {
pname = "awkward1";
version = "0.2.23";
src = fetchPypi {
inherit pname version;
sha256 = "d7458b499959af66e0a640e29e6b676a39cc9614cd504e5a2e8f8d0c7f546597";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ rapidjson ];
propagatedBuildInputs = [ numpy ];
dontUseCmakeConfigure = true;
checkInputs = [ pytestCheckHook numba ];
dontUseSetuptoolsCheck = true;
meta = with lib; {
description = "Manipulate JSON-like data with NumPy-like idioms";
homepage = "https://github.com/scikit-hep/awkward-1.0";
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];
};
}