depot/third_party/nixpkgs/pkgs/applications/version-management/git-branchstack/default.nix
Default email a3d4720129 Project import generated by Copybara.
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
2022-12-28 22:21:41 +01:00

26 lines
553 B
Nix

{ 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 ];
};
}