gitAndTools.gita: init at 0.7.3 (#55533)

This commit is contained in:
Gurkan 2019-02-11 11:24:43 +01:00 committed by Robert Schütz
parent 07208e7a0b
commit 936c9f4118
2 changed files with 26 additions and 0 deletions

View file

@ -38,6 +38,8 @@ let
git-fame = callPackage ./git-fame {};
gita = callPackage ./gita {};
# The full-featured Git.
gitFull = gitBase.override {
svnSupport = true;

View file

@ -0,0 +1,24 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
version = "0.7.3";
pname = "gita";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0ccqjf288513im7cvafiw4ypbp9s3z0avyzd4jzr13m38jrsss3r";
};
propagatedBuildInputs = with python3Packages; [
pyyaml
];
doCheck = false; # Releases don't include tests
meta = with lib; {
description = "A command-line tool to manage multiple git repos";
homepage = https://github.com/nosarthur/gita;
license = licenses.mit;
maintainers = with maintainers; [ seqizz ];
};
}