diff --git a/pkgs/development/python-modules/awkward/default.nix b/pkgs/development/python-modules/awkward/default.nix index 298074f300d9..a343306a5b9e 100644 --- a/pkgs/development/python-modules/awkward/default.nix +++ b/pkgs/development/python-modules/awkward/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "awkward"; - version = "1.0.2"; + version = "1.1.2"; src = fetchPypi { inherit pname version; - sha256 = "3468cb80cab51252a1936e5e593c7df4588ea0e18dcb6fb31e3d2913ba883928"; + sha256 = "4ae8371d9e6d5bd3e90f3686b433cebc0541c88072655d2c75ec58e79b5d6943"; }; nativeBuildInputs = [ cmake ]; @@ -25,6 +25,7 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook numba ]; dontUseSetuptoolsCheck = true; + disabledTestPaths = [ "tests-cuda" ]; meta = with lib; { description = "Manipulate JSON-like data with NumPy-like idioms";