python3Packages.awkward0: 0.15.2 -> 0.15.5 (#117397)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>

authored by

Robert T. McGibbon
Sandro
Dmitry Kalinkin
and committed by
GitHub
6cfb9c85 d68bffb2

+7 -9
+7 -9
pkgs/development/python-modules/awkward0/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , numpy 5 - , pandas 6 5 , pytestrunner 7 6 , pytestCheckHook 8 7 }: 9 8 10 9 buildPythonPackage rec { 11 10 pname = "awkward0"; 12 - version = "0.15.2"; 11 + version = "0.15.5"; 13 12 14 13 src = fetchFromGitHub { 15 14 owner = "scikit-hep"; 16 15 repo = "awkward-0.x"; 17 16 rev = version; 18 - sha256 = "sha256-C6/byIGcabGjws5QI9sh5BO2M4Lhqkooh4mSjUEKCKU="; 17 + sha256 = "039pxzgll2yz8xpr6bw788ymvgvqgna5kgl9m6d9mzi4yhbjsjpx"; 19 18 }; 20 19 21 20 nativeBuildInputs = [ pytestrunner ]; 22 21 23 22 propagatedBuildInputs = [ numpy ]; 24 23 25 - checkInputs = [ pandas pytestCheckHook ]; 24 + checkInputs = [ pytestCheckHook ]; 26 25 27 - checkPhase = '' 28 - # Almost all tests in this file fail 29 - rm tests/test_persist.py 30 - py.test 31 - ''; 26 + # Can't find a fixture 27 + disabledTests = [ "test_import_pandas" ]; 28 + 29 + pythonImportsCheck = [ "awkward0" ]; 32 30 33 31 meta = with lib; { 34 32 description = "Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy";