nixpkgs/pkgs/applications/version-management/git-branchstack/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
553 B
Nix
Raw Normal View History

2022-12-19 23:16:49 +00:00
{ 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 ];
};
}