66604c92c1
GitOrigin-RevId: 32b8ed738096bafb4cdb7f70347a0f63f9f40151
33 lines
986 B
Nix
33 lines
986 B
Nix
{ lib, buildPythonApplication, fetchPypi
|
|
, installShellFiles, pbr
|
|
, flake8, mock, pycodestyle, pylint, tox }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "git-machete";
|
|
version = "2.14.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "01ch4d0r3bi9nl5nknp3dyizc2rl9w46gm1ydnvqbrzhgw65lpp0";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|