about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorGaƩtan Lepage <33058747+GaetanLepage@users.noreply.github.com>2024-06-24 13:49:28 +0200
committerGitHub <noreply@github.com>2024-06-24 07:49:28 -0400
commit207b8a238934d26c98c7aa08844de4214edd6b00 (patch)
tree147cde0e05e7ac526abde4ede51563463181aaa1 /pkgs
parent980f61acef11760db65c632d0b6b0dd345b6f321 (diff)
python311Packages.coffea: 2024.6.0 -> 2024.6.1 (#322140)
Diff: https://github.com/CoffeaTeam/coffea/compare/refs/tags/v2024.6.0...v2024.6.1

Changelog: https://github.com/CoffeaTeam/coffea/releases/tag/v2024.6.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/coffea/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/coffea/default.nix b/pkgs/development/python-modules/coffea/default.nix
index e531471812840..3b4d3f3f1befb 100644
--- a/pkgs/development/python-modules/coffea/default.nix
+++ b/pkgs/development/python-modules/coffea/default.nix
@@ -3,8 +3,12 @@
   buildPythonPackage,
   pythonOlder,
   fetchFromGitHub,
+
+  # build-system
   hatchling,
   hatch-vcs,
+
+  # dependencies
   aiohttp,
   awkward,
   cachetools,
@@ -28,6 +32,8 @@
   toml,
   tqdm,
   uproot,
+
+  # checks
   distributed,
   pyinstrument,
   pytestCheckHook,
@@ -35,7 +41,7 @@
 
 buildPythonPackage rec {
   pname = "coffea";
-  version = "2024.6.0";
+  version = "2024.6.1";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -44,7 +50,7 @@ buildPythonPackage rec {
     owner = "CoffeaTeam";
     repo = "coffea";
     rev = "refs/tags/v${version}";
-    hash = "sha256-MnAGtoev20Cn1WUmX8imUNQCJftU4jw+hInYI7dhb4M=";
+    hash = "sha256-Z6c8R8B8IrDkXVDx89XVtg3eRgORuHPfUyAPRGwAlrg=";
   };
 
   build-system = [