depot/third_party/nixpkgs/pkgs/development/python-modules/git-sweep/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

30 lines
596 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, GitPython
}:
buildPythonPackage rec {
pname = "git-sweep";
version = "0.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "1csp0zd049d643d409rfivbswwzrayb4i6gkypp5mc27fb1z2afd";
};
propagatedBuildInputs = [ GitPython ];
# no tests
doCheck = false;
pythonImportsCheck = [ "gitsweep" ];
meta = with 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 ];
};
}