34 lines
986 B
Nix
34 lines
986 B
Nix
|
{ lib, buildPythonApplication, fetchPypi
|
||
|
, installShellFiles, pbr
|
||
|
, flake8, mock, pycodestyle, pylint, tox }:
|
||
|
|
||
|
buildPythonApplication rec {
|
||
|
pname = "git-machete";
|
||
|
version = "2.13.6";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0n07gm05676vgfh6vlym59jwwzym9xmibhr0zpf0drlx02fr47qy";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ installShellFiles pbr ];
|
||
|
|
||
|
# TODO: Add missing check inputs (2019-11-22):
|
||
|
# - stestr
|
||
|
doCheck = false;
|
||
|
checkInputs = [ flake8 mock pycodestyle pylint tox ];
|
||
|
|
||
|
postInstall = ''
|
||
|
installShellCompletion --bash --name git-machete completion/git-machete.completion.bash
|
||
|
installShellCompletion --zsh --name _git-machete completion/git-machete.completion.zsh
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/VirtusLab/git-machete";
|
||
|
description = "Git repository organizer and rebase/merge workflow automation tool";
|
||
|
license = licenses.mit;
|
||
|
platforms = platforms.all;
|
||
|
maintainers = [ maintainers.blitz ];
|
||
|
};
|
||
|
}
|