buttersink: move out of pythonPackages (#45783)

This commit is contained in:
Robert Schütz 2018-08-30 16:33:53 +02:00 committed by xeji
parent c410519ae2
commit 4b4c871401
3 changed files with 11 additions and 9 deletions

View file

@ -1,18 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, boto, crcmod, psutil }:
{ lib, python2 }:
buildPythonPackage rec {
python2.pkgs.buildPythonApplication rec {
pname = "buttersink";
version = "0.6.9";
disabled = isPy3k;
src = fetchPypi {
src = python2.pkgs.fetchPypi {
inherit pname version;
sha256 = "c9c05982c44fbb85f17b7ef0e8bee11f375c03d89bcba50cbc2520013512107a";
sha256 = "a797b6e92ad2acdf41e033c1368ab365aa268f4d8458b396a5770fa6c2bc3f54";
};
propagatedBuildInputs = [ boto crcmod psutil ];
propagatedBuildInputs = with python2.pkgs; [ boto crcmod psutil ];
meta = with stdenv.lib; {
# No tests implemented
doCheck = false;
meta = with lib; {
description = "Synchronise btrfs snapshots";
longDescription = ''
ButterSink is like rsync, but for btrfs subvolumes instead of files,

View file

@ -973,6 +973,8 @@ with pkgs;
bustle = haskellPackages.bustle;
buttersink = callPackage ../tools/filesystems/buttersink { };
bwm_ng = callPackage ../tools/networking/bwm-ng { };
byobu = callPackage ../tools/misc/byobu {

View file

@ -1068,8 +1068,6 @@ in {
bumps = callPackage ../development/python-modules/bumps {};
buttersink = callPackage ../development/python-modules/buttersink {};
cached-property = callPackage ../development/python-modules/cached-property { };
caffe = pkgs.caffe.override {