about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGaƩtan Lepage <33058747+GaetanLepage@users.noreply.github.com>2024-01-27 00:45:21 +0100
committerGitHub <noreply@github.com>2024-01-26 18:45:21 -0500
commitae78df7a69130f67511eb9ad98a92b7bd7a86eb2 (patch)
tree8d1a8860cb75a7c8d3ddeac4f52552603308bbed
parent9c8d5c68cc55053749f36ee937ea70c3fe397a80 (diff)
downloadnixlib-ae78df7a69130f67511eb9ad98a92b7bd7a86eb2.tar
nixlib-ae78df7a69130f67511eb9ad98a92b7bd7a86eb2.tar.gz
nixlib-ae78df7a69130f67511eb9ad98a92b7bd7a86eb2.tar.bz2
nixlib-ae78df7a69130f67511eb9ad98a92b7bd7a86eb2.tar.lz
nixlib-ae78df7a69130f67511eb9ad98a92b7bd7a86eb2.tar.xz
nixlib-ae78df7a69130f67511eb9ad98a92b7bd7a86eb2.tar.zst
nixlib-ae78df7a69130f67511eb9ad98a92b7bd7a86eb2.zip
python311Packages.uproot: 5.2.1 -> 5.2.2 (#284112)
Changelog: https://github.com/scikit-hep/uproot5/releases/tag/v5.2.2
-rw-r--r--pkgs/development/python-modules/uproot/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/uproot/default.nix b/pkgs/development/python-modules/uproot/default.nix
index 79c925c012a5..288758dfb34a 100644
--- a/pkgs/development/python-modules/uproot/default.nix
+++ b/pkgs/development/python-modules/uproot/default.nix
@@ -3,10 +3,12 @@
 , fetchFromGitHub
 , pythonOlder
 , awkward
+, hatch-vcs
 , hatchling
 , numpy
 , fsspec
 , packaging
+, pandas
 , pytestCheckHook
 , lz4
 , pytest-timeout
@@ -18,7 +20,7 @@
 
 buildPythonPackage rec {
   pname = "uproot";
-  version = "5.2.1";
+  version = "5.2.2";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -27,10 +29,11 @@ buildPythonPackage rec {
     owner = "scikit-hep";
     repo = "uproot5";
     rev = "refs/tags/v${version}";
-    hash = "sha256-3BGGtA99MoagFtGcCeGiDyvzqixf+lbEu9Dn/62RQto=";
+    hash = "sha256-7X8oIMvOSC1JXQrZTPXLiqsUnfSc2Rx3KCvxKbhvPzM=";
   };
 
   nativeBuildInputs = [
+    hatch-vcs
     hatchling
   ];
 
@@ -42,6 +45,7 @@ buildPythonPackage rec {
   ];
 
   nativeCheckInputs = [
+    pandas
     pytestCheckHook
     lz4
     pytest-timeout