2017-01-19 17:57:08 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 09:25:35 +00:00
|
|
|
pname = "xmpp.py";
|
|
|
|
name = "${pname}-${version}";
|
2017-01-19 17:57:08 +00:00
|
|
|
version = "0.5.0rc1";
|
|
|
|
|
|
|
|
patches = [ ./ssl.patch ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xmpppy/xmpppy-${version}.tar.gz";
|
|
|
|
sha256 = "16hbh8kwc5n4qw2rz1mrs8q17rh1zq9cdl05b1nc404n7idh56si";
|
|
|
|
};
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
mkdir -p $out/bin $out/lib $out/share $(toPythonPath $out)
|
|
|
|
export PYTHONPATH=$PYTHONPATH:$(toPythonPath $out)
|
|
|
|
'';
|
|
|
|
|
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "XMPP python library";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://xmpppy.sourceforge.net/;
|
2017-01-19 19:04:54 +00:00
|
|
|
license = licenses.gpl3;
|
2017-01-19 17:57:08 +00:00
|
|
|
maintainers = [ maintainers.mic92 ];
|
|
|
|
};
|
|
|
|
}
|