summary refs log tree commit diff
path: root/pkgs/development/python-modules/xmpppy/default.nix
blob: 3fc8058dfb2a3cbb20f3e95ffa98e1ccb937c36c (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
a :  
let 
  fetchurl = a.fetchurl;

  version = a.lib.attrByPath ["version"] "0.5.0rc1" a; 
  buildInputs = with a; [
    python setuptools
  ];
in
rec {
  src = fetchurl {
    url = "http://prdownloads.sourceforge.net/sourceforge/xmpppy/xmpppy-${version}.tar.gz";
    sha256 = "16hbh8kwc5n4qw2rz1mrs8q17rh1zq9cdl05b1nc404n7idh56si";
  };

  inherit buildInputs;
  configureFlags = [];

  /* doConfigure should be removed if not needed */
  phaseNames = ["mkDirs" "installPythonPackage"];
  mkDirs = a.fullDepEntry(''
    ensureDir $out/bin $out/lib $out/share $(toPythonPath $out)
    export PYTHONPATH=$PYTHONPATH:$(toPythonPath $out)
  '') ["defEnsureDir" "addInputs"];
      
  name = "xmpp.py-" + version;
  meta = {
    description = "XMPP python library";
  };
}