1{ lib 2, fetchPypi 3, buildPythonApplication 4, git-revise 5}: 6 7buildPythonApplication rec { 8 pname = "git-branchstack"; 9 version = "0.2.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-gja93LOcVCQ6l+Cygvsm+3uomvxtvUl6t23GIb/tKyQ="; 14 }; 15 16 buildInputs = [ 17 git-revise 18 ]; 19 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 }; 26}