reuse: 0.11.1 -> 0.12.1

Next to the version bump, the tests are now executed.
This commit is contained in:
Alvar Penning 2021-01-14 14:06:00 +01:00
parent 7346bc0167
commit 8f81d7554f

View file

@ -1,19 +1,17 @@
{ lib, python3Packages, fetchFromGitHub }:
with python3Packages;
buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "reuse";
version = "0.11.1";
version = "0.12.1";
src = fetchFromGitHub {
owner = "fsfe";
repo = "reuse-tool";
rev = "v${version}";
sha256 = "0wkk107s0bpvbknapns0qdzf8csrzc2j6gliy6pa8z208fcfzyy3";
sha256 = "0ql0krnz0fmq405r2qrm9ysm3cvmqfw14j06pny6na7qshibj78z";
};
propagatedBuildInputs = [
propagatedBuildInputs = with python3Packages; [
binaryornot
boolean-py
debian
@ -24,7 +22,7 @@ buildPythonApplication rec {
setuptools_scm
];
checkInputs = [ pytest ];
checkInputs = with python3Packages; [ pytestCheckHook ];
meta = with lib; {
description = "A tool for compliance with the REUSE Initiative recommendations";