lol

python-packages: add buttersink 0.6.6

+26
+26
pkgs/top-level/python-packages.nix
··· 974 974 }; 975 975 }; 976 976 977 + buttersink = buildPythonPackage rec { 978 + name = "buttersink-0.6.6"; 979 + 980 + src = pkgs.fetchurl { 981 + sha256 = "1vi0pz8r3d17bsn5g7clkyph7sc0rjzbzqk6rwglaxcah7sfj2mj"; 982 + url = "https://pypi.python.org/packages/source/b/buttersink/${name}.tar.gz"; 983 + }; 984 + 985 + meta = { 986 + description = "Synchronise btrfs snapshots"; 987 + longDescription = '' 988 + ButterSink is like rsync, but for btrfs subvolumes instead of files, 989 + which makes it much more efficient for things like archiving backup 990 + snapshots. It is built on top of btrfs send and receive capabilities. 991 + Sources and destinations can be local btrfs file systems, remote btrfs 992 + file systems over SSH, or S3 buckets. 993 + ''; 994 + homepage = https://github.com/AmesCornish/buttersink/wiki; 995 + license = licenses.gpl3; 996 + platforms = platforms.linux; 997 + maintainers = with maintainers; [ nckx ]; 998 + }; 999 + 1000 + propagatedBuildInputs = with self; [ boto crcmod psutil ]; 1001 + }; 1002 + 977 1003 circus = buildPythonPackage rec { 978 1004 name = "circus-0.11.1"; 979 1005