Merge pull request #203948 from Luflosi/update/reuse

This commit is contained in:
Sandro 2022-12-13 17:18:21 +01:00 committed by GitHub
commit cb40c4fcd5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,22 +2,26 @@
python3Packages.buildPythonApplication rec {
pname = "reuse";
version = "1.0.0";
version = "1.1.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "fsfe";
repo = "reuse-tool";
rev = "v${version}";
sha256 = "0yplsbd5251s8cabazbdqb00jqv8ibbgal7fhj5pfxv5lsz17vkv";
hash = "sha256-bjUDImMFwMhRjCa7XzGlqR8h+KfTsyxonrQlRGgApwo=";
};
nativeBuildInputs = with python3Packages; [
poetry-core
];
propagatedBuildInputs = with python3Packages; [
binaryornot
boolean-py
debian
jinja2
license-expression
requests
setuptools
setuptools-scm
];
@ -28,6 +32,6 @@ python3Packages.buildPythonApplication rec {
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 = [ maintainers.FlorianFranzen ];
maintainers = with maintainers; [ FlorianFranzen Luflosi ];
};
}