Unverified Commit cf52d5e8 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

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

python312Packages.reuse: refactor
parents 959f5904 34966fa0
Loading
Loading
Loading
Loading
+25 −17
Original line number Diff line number Diff line
{ 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";
  };
}