third_party/nixpkgs: update reuse to 0.11.0

This commit is contained in:
Luke Granger-Brown 2020-06-07 14:44:27 +01:00
parent 15c82b0498
commit 52c503e879

View file

@ -4,13 +4,13 @@ with python3Packages;
buildPythonApplication rec { buildPythonApplication rec {
pname = "reuse"; pname = "reuse";
version = "0.7.0"; version = "0.11.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "fsfe"; owner = "fsfe";
repo = "reuse-tool"; repo = "reuse-tool";
rev = "v${version}"; rev = "v${version}";
sha256 = "04i8zd66cs152h28k9085nqg937wp31pz2yqywaldx1gywijyd8h"; sha256 = "08dzvrv28ylbq1bm16lakwzyqq530fcbrl71k33zyb84mvgszy97";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -21,6 +21,7 @@ buildPythonApplication rec {
license-expression license-expression
requests requests
setuptools setuptools
setuptools_scm
]; ];
checkInputs = [ pytest ]; checkInputs = [ pytest ];