depot/third_party/nixpkgs/pkgs/applications/version-management/gita/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

42 lines
917 B
Nix

{ lib
, buildPythonApplication
, fetchFromGitHub
, pyyaml
, setuptools
, installShellFiles
}:
buildPythonApplication rec {
version = "0.16.6.1";
pname = "gita";
src = fetchFromGitHub {
sha256 = "sha256-kPyk13yd4rc63Nh73opuHsCTj4DgYAVfro8To96tteA=";
rev = "v${version}";
repo = "gita";
owner = "nosarthur";
};
propagatedBuildInputs = [
pyyaml
setuptools
];
nativeBuildInputs = [ installShellFiles ];
# 3 of the tests are failing
doCheck = false;
postInstall = ''
installShellCompletion --bash --name gita ${src}/.gita-completion.bash
installShellCompletion --zsh --name gita ${src}/.gita-completion.zsh
'';
meta = with lib; {
description = "Command-line tool to manage multiple git repos";
homepage = "https://github.com/nosarthur/gita";
license = licenses.mit;
maintainers = with maintainers; [ seqizz ];
mainProgram = "gita";
};
}