about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/git-branchstack/default.nix
blob: b536642cbf55ed950bee55395a8da876ee3e1b5a (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
{ lib
, fetchPypi
, buildPythonApplication
, git-revise
}:

buildPythonApplication rec {
  pname = "git-branchstack";
  version = "0.2.0";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-gja93LOcVCQ6l+Cygvsm+3uomvxtvUl6t23GIb/tKyQ=";
  };

  buildInputs = [
    git-revise
  ];

  meta = with lib; {
    homepage = "https://github.com/krobelus/git-branchstack";
    description = "Efficiently manage Git branches without leaving your local branch";
    license = licenses.mit;
    maintainers = [ maintainers.AndersonTorres ];
  };
}