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