Merge pull request #322628 from GaetanLepage/lightning-utilities

This commit is contained in:
Sandro
2024-06-27 13:32:54 +02:00
committed by GitHub
@@ -18,14 +18,14 @@
buildPythonPackage rec {
pname = "lightning-utilities";
version = "0.11.2";
version = "0.11.3.post0";
pyproject = true;
src = fetchFromGitHub {
owner = "Lightning-AI";
repo = "utilities";
rev = "refs/tags/v${version}";
hash = "sha256-IT9aRAUNc2cP2erLr0MglZSVLfDjOxg8PVIIe9AvO0o=";
hash = "sha256-pOy8BCNwuPcM6cvUl295y+0QrcWOq2rT9iZMKyBxpqg=";
};
build-system = [ setuptools ];
@@ -67,12 +67,12 @@ buildPythonPackage rec {
"ignore::DeprecationWarning"
];
meta = with lib; {
meta = {
changelog = "https://github.com/Lightning-AI/utilities/releases/tag/v${version}";
description = "Common Python utilities and GitHub Actions in Lightning Ecosystem";
homepage = "https://github.com/Lightning-AI/utilities";
license = licenses.asl20;
maintainers = with maintainers; [ GaetanLepage ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
broken = pythonAtLeast "3.12";
};
}