2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 21:33:57 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, GitPython
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "git-sweep";
|
|
|
|
version = "0.1.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1csp0zd049d643d409rfivbswwzrayb4i6gkypp5mc27fb1z2afd";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ GitPython ];
|
|
|
|
|
2021-01-31 21:56:09 +00:00
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "gitsweep" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-16 21:33:57 +01:00
|
|
|
description = "A command-line tool that helps you clean up Git branches";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/arc90/git-sweep";
|
2018-10-16 21:33:57 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|