Merge pull request #333045 from Pandapip1/optree-minor-reformat

optree: Minor reformat
This commit is contained in:
Peder Bergebakken Sundt 2024-08-11 22:18:25 +02:00 committed by GitHub
commit 19a5e94f8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "metaopt";
repo = pname;
repo = "optree";
rev = "refs/tags/v${version}";
hash = "sha256-4GvB9Z7qnEjsUSl+x5wd8czV80F50MwJdlNdylUU0zY=";
};
@ -44,11 +44,11 @@ buildPythonPackage rec {
];
pythonImportsCheck = [ "optree" ];
meta = with lib; {
homepage = "https://github.com/metaopt/optree";
changelog = "https://github.com/metaopt/optree/releases/tag/v${version}";
meta = {
description = "Optimized PyTree Utilities";
maintainers = with maintainers; [ pandapip1 ];
license = licenses.asl20;
homepage = "https://github.com/metaopt/optree";
changelog = "https://github.com/metaopt/optree/releases";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ pandapip1 ];
};
}