nixpkgs/pkgs/applications/version-management/gita/default.nix
2024-07-26 11:36:49 +02:00

43 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";
};
}