python2Packages.pythonIRClib: remove

It is not used by any leaf package and provides no executable.
This commit is contained in:
Robert Schütz 2021-12-31 08:25:59 +00:00 committed by Martin Weinelt
parent 63b5ee56a6
commit de8b43a2e2
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
3 changed files with 0 additions and 38 deletions

View file

@ -1,34 +0,0 @@
{ lib
, buildPythonPackage
, fetchurl
, paver
, isPy3k
}:
buildPythonPackage rec {
pname = "irclib";
version = "0.4.8";
disabled = isPy3k;
src = fetchurl {
url = "mirror://sourceforge/python-irclib/python-irclib-${version}.tar.gz";
sha256 = "1x5456y4rbxmnw4yblhb4as5791glcw394bm36px3x6l05j3mvl1";
};
patches = [(fetchurl {
url = "http://trac.uwc.ac.za/trac/python_tools/browser/xmpp/resources/irc-transport/irclib.py.diff?rev=387&format=raw";
name = "irclib.py.diff";
sha256 = "5fb8d95d6c95c93eaa400b38447c63e7a176b9502bc49b2f9b788c9905f4ec5e";
})];
patchFlags = [ "irclib.py" ];
propagatedBuildInputs = [ paver ];
meta = with lib; {
description = "Python IRC library";
homepage = "https://github.com/jaraco/irc";
license = with licenses; [ lgpl21 ];
};
}

View file

@ -8997,8 +8997,6 @@ with pkgs;
teapot = callPackage ../applications/office/teapot { };
pythonIRClib = pythonPackages.pythonIRClib;
pyditz = callPackage ../applications/misc/pyditz {
pythonPackages = python27Packages;
};

View file

@ -493,8 +493,6 @@ with self; with super; {
python2-pythondialog = callPackage ../development/python-modules/python2-pythondialog { };
pythonIRClib = callPackage ../development/python-modules/pythonirclib { };
pythonmagick = callPackage ../development/python-modules/pythonmagick { };
pyutil = callPackage ../development/python-modules/pyutil { };