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 }: { lib, python3Packages, fetchFromGitHub }:
with python3Packages; python3Packages.buildPythonApplication rec {
buildPythonApplication rec {
pname = "reuse"; pname = "reuse";
version = "0.11.1"; version = "0.12.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "fsfe"; owner = "fsfe";
repo = "reuse-tool"; repo = "reuse-tool";
rev = "v${version}"; rev = "v${version}";
sha256 = "0wkk107s0bpvbknapns0qdzf8csrzc2j6gliy6pa8z208fcfzyy3"; sha256 = "0ql0krnz0fmq405r2qrm9ysm3cvmqfw14j06pny6na7qshibj78z";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = with python3Packages; [
binaryornot binaryornot
boolean-py boolean-py
debian debian
@ -24,7 +22,7 @@ buildPythonApplication rec {
setuptools_scm setuptools_scm
]; ];
checkInputs = [ pytest ]; checkInputs = with python3Packages; [ pytestCheckHook ];
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";