python311Packages.awkward: 2.4.6 -> 2.4.9

Changelog: https://github.com/scikit-hep/awkward/releases/tag/v2.4.9
This commit is contained in:
Gaetan Lepage
2023-10-27 12:08:18 +02:00
parent 429818045a
commit 439e57613c

View File

@@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, fetchFromGitHub
, hatch-fancy-pypi-readme
, hatchling
, awkward-cpp
@@ -23,14 +23,16 @@
buildPythonPackage rec {
pname = "awkward";
version = "2.4.6";
version = "2.4.9";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-MRnrPChX3a26JELh4oH5nefwoQurpvpprZXeNnz1Cwo=";
src = fetchFromGitHub {
owner = "scikit-hep";
repo = "awkward";
rev = "refs/tags/v${version}";
hash = "sha256-8MllMKf/xp5SdtF9P1Sa6Ytml4nQ5OX7vs7ITU8mCRU=";
};
nativeBuildInputs = [
@@ -69,7 +71,6 @@ buildPythonPackage rec {
# The following tests have been disabled because they need to be run on a GPU platform.
disabledTestPaths = [
"tests-cuda"
"tests-cuda-kernels"
];
meta = with lib; {