Merge pull request #302524 from r-ryantm/auto-update/python312Packages.reuse

python312Packages.reuse: refactor
This commit is contained in:
Weijia Wang 2024-04-27 02:18:55 +02:00 committed by GitHub
commit cf52d5e862
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,19 +1,20 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, poetry-core fetchFromGitHub,
, binaryornot poetry-core,
, boolean-py binaryornot,
, debian boolean-py,
, jinja2 debian,
, license-expression jinja2,
, pytestCheckHook license-expression,
pytestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "reuse"; pname = "reuse";
version = "3.0.2"; version = "3.0.2";
format = "pyproject"; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "fsfe"; owner = "fsfe";
@ -22,11 +23,9 @@ buildPythonPackage rec {
hash = "sha256-ZYmQtJ503HDmu+Cd6IxOrCcOVH+CcFnFe3oe6PqvcE0="; hash = "sha256-ZYmQtJ503HDmu+Cd6IxOrCcOVH+CcFnFe3oe6PqvcE0=";
}; };
nativeBuildInputs = [ build-system = [ poetry-core ];
poetry-core
];
propagatedBuildInputs = [ dependencies = [
binaryornot binaryornot
boolean-py boolean-py
debian debian
@ -46,8 +45,17 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "A tool for compliance with the REUSE Initiative recommendations"; description = "A tool for compliance with the REUSE Initiative recommendations";
homepage = "https://github.com/fsfe/reuse-tool"; homepage = "https://github.com/fsfe/reuse-tool";
license = with licenses; [ asl20 cc-by-sa-40 cc0 gpl3Plus ]; changelog = "https://github.com/fsfe/reuse-tool/blob/v${version}/CHANGELOG.md";
maintainers = with maintainers; [ FlorianFranzen Luflosi ]; license = with licenses; [
asl20
cc-by-sa-40
cc0
gpl3Plus
];
maintainers = with maintainers; [
FlorianFranzen
Luflosi
];
mainProgram = "reuse"; mainProgram = "reuse";
}; };
} }