Remove bittornado

Package is broken. Won't work with wxPython30, and wheel produced with
buildPythonPackage cannot be installed either.
This commit is contained in:
Frederik Rietdijk 2016-05-26 18:51:25 +02:00
parent 6d16979d7a
commit 63b7323402
2 changed files with 0 additions and 26 deletions

View file

@ -1,24 +0,0 @@
{ stdenv,fetchurl,python, wxPython, makeWrapper }:
stdenv.mkDerivation {
name = "bit-tornado-0.3.18";
src = fetchurl {
url = http://download2.bittornado.com/download/BitTornado-0.3.18.tar.gz;
sha256 = "1q6rapidnizy8wawasirgyjl9s4lrm7mm740mc5q5sdjyl5svrnr";
};
buildInputs = [ python wxPython makeWrapper ];
buildPhase = '' '';
installPhase = ''
python setup.py install --prefix=$out ;
for i in $(cd $out/bin && ls); do
wrapProgram $out/bin/$i \
--prefix PYTHONPATH : "$(toPythonPath $out):$PYTHONPATH"
done
'';
meta = {
description = "Bittorrent client with IPv6 support";
};
}

View file

@ -933,8 +933,6 @@ in
inherit (strategoPackages016) strategoxt sdf;
};
bittornado = callPackage ../tools/networking/p2p/bit-tornado { };
blueman = callPackage ../tools/bluetooth/blueman {
inherit (gnome3) dconf gsettings_desktop_schemas;
withPulseAudio = config.pulseaudio or true;