3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #138958 from superherointj/package-git-machete-fix_tests

git-machete: fix tests
This commit is contained in:
figsoda 2021-09-22 12:26:53 -04:00 committed by GitHub
commit 9e0746a9ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
{ lib, buildPythonApplication, fetchPypi
, installShellFiles, pbr
, flake8, mock, pycodestyle, pylint, tox
, flake8, mock, pycodestyle, pylint, stestr, tox
, nix-update-script
, testVersion, git-machete
}:
@ -16,10 +16,7 @@ buildPythonApplication rec {
nativeBuildInputs = [ installShellFiles pbr ];
# TODO: Add missing check inputs (2019-11-22):
# - stestr
doCheck = false;
checkInputs = [ flake8 mock pycodestyle pylint tox ];
checkInputs = [ flake8 mock pycodestyle pylint stestr tox ];
postInstall = ''
installShellCompletion --bash --name git-machete completion/git-machete.completion.bash
@ -43,6 +40,6 @@ buildPythonApplication rec {
description = "Git repository organizer and rebase/merge workflow automation tool";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.blitz ];
maintainers = with maintainers; [ blitz ];
};
}