python.pkgs.nbxmpp: 0.6.3 -> 0.6.4
This commit is contained in:
parent
1c810f5f83
commit
cf981d3e2b
@ -1,17 +1,30 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
{ stdenv, buildPythonPackage, fetchzip, pyopenssl }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "nbxmpp";
|
pname = "nbxmpp";
|
||||||
version = "0.6.3";
|
version = "0.6.4";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = fetchPypi {
|
# Tests aren't included in PyPI tarball.
|
||||||
inherit pname version;
|
src = fetchzip {
|
||||||
sha256 = "dd66e701a4856e3cace8f4865837ccc9bcfcdb286df01f01aa19531f5d834a83";
|
name = "${name}.tar.bz2";
|
||||||
|
url = "https://dev.gajim.org/gajim/python-nbxmpp/repository/archive.tar.bz2?"
|
||||||
|
+ "ref=${name}";
|
||||||
|
sha256 = "0mikgksf01w82wnnm0phmzkijk2c93g24fzd59s71n3zy7f7dx3l";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pyopenssl ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
# Disable tests requiring networking
|
||||||
|
echo "" > test/unit/test_xmpp_transports_nb2.py
|
||||||
|
python test/runtests.py
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://dev.gajim.org/gajim/python-nbxmpp";
|
homepage = "https://dev.gajim.org/gajim/python-nbxmpp";
|
||||||
description = "Non-blocking Jabber/XMPP module";
|
description = "Non-blocking Jabber/XMPP module";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ abbradar ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user