7 python3.pkgs.buildPythonApplication rec {
8 pname = "rotate-backups";
11 src = fetchFromGitHub {
13 repo = "python-rotate-backups";
15 sha256 = "0r4dyd7hj403rksgp3vh1azp9n4af75r3wq3x39wxcqizpms3vkx";
18 propagatedBuildInputs = with python3.pkgs; [
24 nativeCheckInputs = with python3.pkgs; [
29 # https://github.com/xolox/python-rotate-backups/issues/33
30 "test_removal_command"
34 description = "Simple command line interface for backup rotation";
35 mainProgram = "rotate-backups";
36 homepage = "https://github.com/xolox/python-rotate-backups";
37 license = licenses.mit;
38 maintainers = with maintainers; [ eyjhb ];