nixpkgs/pkgs/tools/package-management/reuse/default.nix
2019-11-29 15:47:00 +01:00

35 lines
756 B
Nix

{ lib, python3Packages, fetchFromGitHub }:
with python3Packages;
buildPythonApplication rec {
pname = "reuse";
version = "0.6.0";
src = fetchFromGitHub {
owner = "fsfe";
repo = "reuse-tool";
rev = "v${version}";
sha256 = "17bslyvjndhqryrisba9y7y0ijyzi3gmyl9rddkcvdqi3lg9668y";
};
propagatedBuildInputs = [
binaryornot
boolean-py
debian
jinja2
license-expression
requests
setuptools
];
checkInputs = [ pytest ];
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 = [ maintainers.FlorianFranzen ];
};
}