mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
533 B
Nix
26 lines
533 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, GitPython
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "git-sweep";
|
|
version = "0.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1csp0zd049d643d409rfivbswwzrayb4i6gkypp5mc27fb1z2afd";
|
|
};
|
|
|
|
propagatedBuildInputs = [ GitPython ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A command-line tool that helps you clean up Git branches";
|
|
homepage = "https://github.com/arc90/git-sweep";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
|
|
}
|