14 buildPythonPackage rec {
17 disabled = pythonOlder "3.3";
19 src = fetchFromGitHub {
23 sha256 = "0sp8pmjkxcqq0alianfp41mwq7qj10rk1qy31pjjp9kiph1rn0x6";
26 buildInputs = [ btrfs-progs ];
27 propagatedBuildInputs = [ contextlib2 pyxdg pycparser alembic ]
28 ++ lib.optionals (!isPyPy) [ cffi ];
31 description = "Deduplication for Btrfs";
33 Deduplication for Btrfs. bedup looks for new and changed files,
34 making sure that multiple copies of identical files share space
35 on disk. It integrates deeply with btrfs so that scans are
36 incremental and low-impact.
38 homepage = "https://github.com/g2p/bedup";
39 license = licenses.gpl2;
40 maintainers = with maintainers; [ bluescreen303 ];