1{ lib
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 # no tests
19 doCheck = false;
20
21 pythonImportsCheck = [ "gitsweep" ];
22
23 meta = with lib; {
24 description = "A command-line tool that helps you clean up Git branches";
25 homepage = "https://github.com/arc90/git-sweep";
26 license = licenses.mit;
27 maintainers = with maintainers; [ pSub ];
28 };
29
30}