nixpkgs/pkgs/applications/version-management/git-and-tools/git-machete/default.nix

34 lines
985 B
Nix
Raw Normal View History

2019-11-22 09:39:14 +00:00
{ lib, buildPythonApplication, fetchPypi
, installShellFiles, pbr
, flake8, mock, pycodestyle, pylint, tox }:
buildPythonApplication rec {
pname = "git-machete";
version = "3.1.0";
2019-11-22 09:39:14 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0bb6ap8sdp4ad0xkh3y8vj46a363g5gdw0dzf9ycw0z9ah8ispfx";
2019-11-22 09:39:14 +00:00
};
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";
2019-11-22 09:39:14 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.blitz ];
};
}