1 { lib, python3Packages, fetchPypi, librsync }:
4 pypkgs = python3Packages;
7 pypkgs.buildPythonApplication rec {
8 pname = "rdiff-backup";
12 inherit pname version;
13 hash = "sha256-0HeDVyZrxlE7t/daRXCymySydgNIu/YHur/DpvCUWM8";
16 nativeBuildInputs = with pypkgs; [ setuptools-scm ];
18 buildInputs = [ librsync ];
20 propagatedBuildInputs = with pypkgs; [ pyyaml ];
26 description = "Backup system trying to combine best a mirror and an incremental backup system";
27 homepage = "https://rdiff-backup.net";
28 license = licenses.gpl2Only;
29 maintainers = with maintainers; [ peterhoeg ];
30 mainProgram = "rdiff-backup";
31 platforms = platforms.all;