Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / version-management / git-branchstack / default.nix
blobb536642cbf55ed950bee55395a8da876ee3e1b5a
1 { lib
2 , fetchPypi
3 , buildPythonApplication
4 , git-revise
5 }:
7 buildPythonApplication rec {
8   pname = "git-branchstack";
9   version = "0.2.0";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-gja93LOcVCQ6l+Cygvsm+3uomvxtvUl6t23GIb/tKyQ=";
14   };
16   buildInputs = [
17     git-revise
18   ];
20   meta = with lib; {
21     homepage = "https://github.com/krobelus/git-branchstack";
22     description = "Efficiently manage Git branches without leaving your local branch";
23     license = licenses.mit;
24     maintainers = [ maintainers.AndersonTorres ];
25   };