summary refs log tree commit diff
path: root/pkgs/development/python-modules/irclib
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-04-21 10:51:15 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-04-21 10:51:15 +0000
commite2a374799fc9e93034fbb75b12f597b874cb00dd (patch)
treeaa8734e81af3566ba0efe5adf52009c844a30d0c /pkgs/development/python-modules/irclib
parent8d9ac92768e2781c742a3dc9b7e0e2b976c966f5 (diff)
downloadnixlib-e2a374799fc9e93034fbb75b12f597b874cb00dd.tar
nixlib-e2a374799fc9e93034fbb75b12f597b874cb00dd.tar.gz
nixlib-e2a374799fc9e93034fbb75b12f597b874cb00dd.tar.bz2
nixlib-e2a374799fc9e93034fbb75b12f597b874cb00dd.tar.lz
nixlib-e2a374799fc9e93034fbb75b12f597b874cb00dd.tar.xz
nixlib-e2a374799fc9e93034fbb75b12f597b874cb00dd.tar.zst
nixlib-e2a374799fc9e93034fbb75b12f597b874cb00dd.zip
* Reverted most of the recent Python refactorings, as discussed. It's
  a worthy goal to move the Python packages that are currently in
  all-packages.nix into a single attribute set, but this doesn't
  require moving python-packages.nix or the other changes made to that
  file.  The Python packages in all-packages.nix should simply be
  moved to python-packages.nix, and ideally changed to use
  buildPythonPackage.

svn path=/nixpkgs/trunk/; revision=21196
Diffstat (limited to 'pkgs/development/python-modules/irclib')
-rw-r--r--pkgs/development/python-modules/irclib/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/irclib/default.nix b/pkgs/development/python-modules/irclib/default.nix
new file mode 100644
index 000000000000..c840e0a10035
--- /dev/null
+++ b/pkgs/development/python-modules/irclib/default.nix
@@ -0,0 +1,32 @@
+a :  
+let 
+  fetchurl = a.fetchurl;
+
+  version = a.lib.attrByPath ["version"] "0.4.8" a; 
+  buildInputs = with a; [
+    python
+  ];
+in
+rec {
+  src = fetchurl {
+    url = "http://prdownloads.sourceforge.net/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";
+
+  inherit buildInputs;
+  configureFlags = [];
+
+  /* doConfigure should be removed if not needed */
+  phaseNames = ["doPatch" "installPythonPackage"];
+      
+  name = "python-irclib-" + version;
+  meta = {
+    description = "Python IRC library";
+  };
+}