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
1 changed files with 25 additions and 17 deletions

View File

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