From a76501f2074499e55f5b3e2db6bf1e48d9f2d5ad Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 26 Jul 2025 10:54:33 +0200 Subject: [PATCH] python3Packages.lightning-utilities: 0.14.3 -> 0.15.0 Diff: https://github.com/Lightning-AI/utilities/compare/refs/tags/v0.14.3...refs/tags/v0.15.0 Changelog: https://github.com/Lightning-AI/utilities/releases/tag/v0.15.0 --- .../python-modules/lightning-utilities/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/lightning-utilities/default.nix b/pkgs/development/python-modules/lightning-utilities/default.nix index 3b854baab5e7..07b5c05d3173 100644 --- a/pkgs/development/python-modules/lightning-utilities/default.nix +++ b/pkgs/development/python-modules/lightning-utilities/default.nix @@ -3,12 +3,13 @@ buildPythonPackage, fetchFromGitHub, - # build + # build-system setuptools, - # runtime + # dependencies looseversion, packaging, + tomlkit, typing-extensions, # tests @@ -18,14 +19,14 @@ buildPythonPackage rec { pname = "lightning-utilities"; - version = "0.14.3"; + version = "0.15.0"; pyproject = true; src = fetchFromGitHub { owner = "Lightning-AI"; repo = "utilities"; tag = "v${version}"; - hash = "sha256-MI2dhcxYZJw+EMO05m+W/yE5UlNBB2AHltb0XDamxMc="; + hash = "sha256-4WCsaprtAvrKFbPCa1bZJzT0Fo5F9sMYT2A+bolEmwk="; }; postPatch = '' @@ -38,6 +39,7 @@ buildPythonPackage rec { dependencies = [ looseversion packaging + tomlkit typing-extensions ];