about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/gita/default.nix
blob: 6979a47cdfc181667054c26bca967de7959964e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}