summary refs log tree commit diff
path: root/pkgs/development/python-modules/irclib/default.nix
blob: 3e0eda34b17ac7414c0555b7a6b731f30a6fdbf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
a :  
let 
  fetchurl = a.fetchurl;

  version = a.lib.attrByPath ["version"] "0.4.8" a; 
  buildInputs = with a; [
    python
  ];
in
rec {
  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";

  inherit buildInputs;
  configureFlags = [];

  /* doConfigure should be removed if not needed */
  phaseNames = ["doPatch" "installPythonPackage"];
      
  name = "python-irclib-" + version;
  meta = {
    description = "Python IRC library";
  };
}