forked from mirrors/nixpkgs
python-packages: Add nbxmpp version 0.5.
This is going to be a dependency of the upcoming Gojim version 0.16, so let's package it so it's easy to run release canidate versions using overrideDerivation without much cruft. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
e7295597d8
commit
4fc46efac2
|
@ -4606,6 +4606,23 @@ rec {
|
|||
});
|
||||
|
||||
|
||||
nbxmpp = buildPythonPackage rec {
|
||||
name = "nbxmpp-0.5";
|
||||
|
||||
src = fetchurl {
|
||||
name = "${name}.tar.gz";
|
||||
url = "https://python-nbxmpp.gajim.org/downloads/5";
|
||||
sha256 = "073qhz6vgsym4rkgwj801girl8xqhlbr37xn5lg0za9c61vmwayh";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "https://python-nbxmpp.gajim.org/";
|
||||
description = "Non-blocking Jabber/XMPP module";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
netaddr = buildPythonPackage rec {
|
||||
name = "netaddr-0.7.5";
|
||||
|
||||
|
|
Loading…
Reference in a new issue