{ lib , buildPythonPackage , fetchPypi , cmake , numba , numpy , pytestCheckHook , rapidjson }: buildPythonPackage rec { pname = "awkward1"; version = "0.2.38"; src = fetchPypi { inherit pname version; sha256 = "f25db4920677029a92e92b994f1056902724b6a947549254c1446bdc6e388671"; }; 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 ]; }; }