···974974 };
975975 };
976976977977+ buttersink = buildPythonPackage rec {
978978+ name = "buttersink-0.6.6";
979979+980980+ src = pkgs.fetchurl {
981981+ sha256 = "1vi0pz8r3d17bsn5g7clkyph7sc0rjzbzqk6rwglaxcah7sfj2mj";
982982+ url = "https://pypi.python.org/packages/source/b/buttersink/${name}.tar.gz";
983983+ };
984984+985985+ meta = {
986986+ description = "Synchronise btrfs snapshots";
987987+ longDescription = ''
988988+ ButterSink is like rsync, but for btrfs subvolumes instead of files,
989989+ which makes it much more efficient for things like archiving backup
990990+ snapshots. It is built on top of btrfs send and receive capabilities.
991991+ Sources and destinations can be local btrfs file systems, remote btrfs
992992+ file systems over SSH, or S3 buckets.
993993+ '';
994994+ homepage = https://github.com/AmesCornish/buttersink/wiki;
995995+ license = licenses.gpl3;
996996+ platforms = platforms.linux;
997997+ maintainers = with maintainers; [ nckx ];
998998+ };
999999+10001000+ propagatedBuildInputs = with self; [ boto crcmod psutil ];
10011001+ };
10021002+9771003 circus = buildPythonPackage rec {
9781004 name = "circus-0.11.1";
9791005