forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
38 lines
917 B
Nix
38 lines
917 B
Nix
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "reuse";
|
|
version = "1.1.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fsfe";
|
|
repo = "reuse-tool";
|
|
rev = "v${version}";
|
|
hash = "sha256-bjUDImMFwMhRjCa7XzGlqR8h+KfTsyxonrQlRGgApwo=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
binaryornot
|
|
boolean-py
|
|
debian
|
|
jinja2
|
|
license-expression
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
|
|
|
|
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 = with maintainers; [ FlorianFranzen Luflosi ];
|
|
};
|
|
}
|