From b98c8afb700e413697e5f472ab00668ca6e1b8f3 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 29 May 2024 09:03:07 +0200 Subject: [PATCH] python311Packages.awkward: 2.6.4 -> 2.6.5 Diff: https://github.com/scikit-hep/awkward/compare/refs/tags/v2.6.4...v2.6.5 Changelog: https://github.com/scikit-hep/awkward/releases/tag/v2.6.5 --- pkgs/development/python-modules/awkward/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/awkward/default.nix b/pkgs/development/python-modules/awkward/default.nix index d0d028be234a..f7f613148f9e 100644 --- a/pkgs/development/python-modules/awkward/default.nix +++ b/pkgs/development/python-modules/awkward/default.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { pname = "awkward"; - version = "2.6.4"; + version = "2.6.5"; pyproject = true; disabled = pythonOlder "3.8"; @@ -34,7 +34,7 @@ buildPythonPackage rec { owner = "scikit-hep"; repo = "awkward"; rev = "refs/tags/v${version}"; - hash = "sha256-hoNxNxWfoSlBg6CsKvgEknM4vd+rN/9EFD5nC2y45OA="; + hash = "sha256-HDO626bK5BH/mdLuGkeYIOz8X2N9/rkTLhQNzG1erYA="; }; build-system = [ @@ -80,11 +80,11 @@ buildPythonPackage rec { # Disable tests dependending on jax on darwin ] ++ lib.optionals stdenv.isDarwin [ "tests/test_2603_custom_behaviors_with_jax.py" ]; - meta = with lib; { + meta = { description = "Manipulate JSON-like data with NumPy-like idioms"; homepage = "https://github.com/scikit-hep/awkward"; changelog = "https://github.com/scikit-hep/awkward/releases/tag/v${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ veprbl ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ veprbl ]; }; }