python3Packages.lightning-utilities: 0.14.3 -> 0.15.0 (#428555)

Yt 7bebaaf2 9cf79f96

Changed files
+6 -4
pkgs
development
python-modules
lightning-utilities
+6 -4
pkgs/development/python-modules/lightning-utilities/default.nix
···
buildPythonPackage,
fetchFromGitHub,
-
# build
+
# build-system
setuptools,
-
# runtime
+
# dependencies
looseversion,
packaging,
+
tomlkit,
typing-extensions,
# tests
···
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 = ''
···
dependencies = [
looseversion
packaging
+
tomlkit
typing-extensions
];