{ lib , buildPythonPackage , fetchPypi , cmake , numba , numpy , pytestCheckHook , rapidjson }: buildPythonPackage rec { pname = "awkward"; version = "1.2.2"; src = fetchPypi { inherit pname version; sha256 = "89f126a072d3a6eee091e1afeed87e0b2ed3c34ed31a1814062174de3cab8d9b"; }; nativeBuildInputs = [ cmake ]; buildInputs = [ rapidjson ]; propagatedBuildInputs = [ numpy ]; dontUseCmakeConfigure = true; checkInputs = [ pytestCheckHook numba ]; dontUseSetuptoolsCheck = true; disabledTestPaths = [ "tests-cuda" ]; 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 ]; }; }