about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/git-and-tools/gita/default.nix
blob: 6ecf81779f208cbce976482259af0a80ee1aa9c1 (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
25
26
27
28
{ lib
, buildPythonApplication
, fetchPypi
, pyyaml
}:

buildPythonApplication rec {
  version = "0.9.2";
  pname = "gita";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1aycqq4crsa57ghpv7xc497rf4y8x43fcfd0v9prd2kn6h1793r0";
  };

  propagatedBuildInputs = [
    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 ];
  };
}