python312Packages.griffe: refactor

This commit is contained in:
Fabian Affolter 2024-04-16 09:06:54 +02:00
parent a2e9ba30c8
commit e5af57fcb1

View File

@ -24,11 +24,11 @@ buildPythonPackage rec {
hash = "sha256-W6aOhz8UxJUc2kNRc4JaCqFgIOXsY8ctyQ3xZ+YaD9k="; hash = "sha256-W6aOhz8UxJUc2kNRc4JaCqFgIOXsY8ctyQ3xZ+YaD9k=";
}; };
nativeBuildInputs = [ build-system = [
pdm-backend pdm-backend
]; ];
propagatedBuildInputs = [ dependencies = [
colorama colorama
]; ];
@ -50,10 +50,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Signatures for entire Python programs"; description = "Signatures for entire Python programs";
mainProgram = "griffe";
homepage = "https://github.com/mkdocstrings/griffe"; homepage = "https://github.com/mkdocstrings/griffe";
changelog = "https://github.com/mkdocstrings/griffe/blob/${version}/CHANGELOG.md"; changelog = "https://github.com/mkdocstrings/griffe/blob/${version}/CHANGELOG.md";
license = licenses.isc; license = licenses.isc;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "griffe";
}; };
} }