pythonIRClib: reimplement using buildPythonPackage
This commit is contained in:
parent
b3144ea287
commit
809b3803b9
@ -1,31 +1,22 @@
|
|||||||
a @ {python, ...} :
|
{ buildPythonPackage, fetchurl }:
|
||||||
let
|
|
||||||
fetchurl = a.fetchurl;
|
buildPythonPackage rec {
|
||||||
|
name = "irclib-${version}";
|
||||||
|
version = "0.4.8";
|
||||||
|
|
||||||
version = a.lib.attrByPath ["version"] "0.4.8" a;
|
|
||||||
buildInputs = with a; [
|
|
||||||
python
|
|
||||||
];
|
|
||||||
in
|
|
||||||
rec {
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/python-irclib/python-irclib-${version}.tar.gz";
|
url = "mirror://sourceforge/python-irclib/python-irclib-${version}.tar.gz";
|
||||||
sha256 = "1x5456y4rbxmnw4yblhb4as5791glcw394bm36px3x6l05j3mvl1";
|
sha256 = "1x5456y4rbxmnw4yblhb4as5791glcw394bm36px3x6l05j3mvl1";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [(fetchurl {
|
patches = [(fetchurl {
|
||||||
url = "http://trac.uwc.ac.za/trac/python_tools/browser/xmpp/resources/irc-transport/irclib.py.diff?rev=387&format=raw";
|
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";
|
name = "irclib.py.diff";
|
||||||
sha256 = "5fb8d95d6c95c93eaa400b38447c63e7a176b9502bc49b2f9b788c9905f4ec5e";
|
sha256 = "5fb8d95d6c95c93eaa400b38447c63e7a176b9502bc49b2f9b788c9905f4ec5e";
|
||||||
})];
|
})];
|
||||||
|
|
||||||
patchFlags = "irclib.py";
|
patchFlags = "irclib.py";
|
||||||
|
|
||||||
inherit buildInputs;
|
|
||||||
configureFlags = [];
|
|
||||||
|
|
||||||
/* doConfigure should be removed if not needed */
|
|
||||||
phaseNames = ["doPatch" "installPythonPackage"];
|
|
||||||
|
|
||||||
name = "python-irclib-" + version;
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Python IRC library";
|
description = "Python IRC library";
|
||||||
};
|
};
|
||||||
|
@ -2780,7 +2780,7 @@ let
|
|||||||
|
|
||||||
pythonDBus = dbus_python;
|
pythonDBus = dbus_python;
|
||||||
|
|
||||||
pythonIRClib = builderDefsPackage (callPackage ../development/python-modules/irclib) { };
|
pythonIRClib = callPackage ../development/python-modules/irclib { };
|
||||||
|
|
||||||
pythonSexy = builderDefsPackage (callPackage ../development/python-modules/libsexy) { };
|
pythonSexy = builderDefsPackage (callPackage ../development/python-modules/libsexy) { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user