1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, GitPython
5}:
6
7buildPythonPackage rec {
8 pname = "git-sweep";
9 version = "0.1.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1csp0zd049d643d409rfivbswwzrayb4i6gkypp5mc27fb1z2afd";
14 };
15
16 propagatedBuildInputs = [ GitPython ];
17
18 meta = with stdenv.lib; {
19 description = "A command-line tool that helps you clean up Git branches";
20 homepage = https://github.com/arc90/git-sweep;
21 license = licenses.mit;
22 maintainers = with maintainers; [ pSub ];
23 };
24
25}