nixpkgs/pkgs/development/python-modules/nbxmpp/default.nix

32 lines
892 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchzip, pyopenssl, python }:
2017-11-06 13:26:21 +03:00
let
2017-11-06 13:26:21 +03:00
pname = "nbxmpp";
version = "0.6.10";
2018-03-21 04:08:42 +03:00
name = "${pname}-${version}";
2019-08-14 00:52:01 +03:00
in buildPythonPackage {
inherit pname version;
2018-03-21 04:08:42 +03:00
# Tests aren't included in PyPI tarball.
src = fetchzip {
name = "${name}.tar.bz2";
url = "https://dev.gajim.org/gajim/python-nbxmpp/repository/archive.tar.bz2?"
+ "ref=${name}";
sha256 = "1w31a747mj9rvlp3n20z0fnvyvihphkgkyr22sk2kap3migw8vai";
2017-11-06 13:26:21 +03:00
};
2018-03-21 04:08:42 +03:00
propagatedBuildInputs = [ pyopenssl ];
checkPhase = ''
# Disable tests requiring networking
echo "" > test/unit/test_xmpp_transports_nb2.py
${python.executable} test/runtests.py
2018-03-21 04:08:42 +03:00
'';
2017-11-06 13:26:21 +03:00
meta = with stdenv.lib; {
homepage = "https://dev.gajim.org/gajim/python-nbxmpp";
description = "Non-blocking Jabber/XMPP module";
license = licenses.gpl3;
2018-03-21 04:08:42 +03:00
maintainers = with maintainers; [ abbradar ];
2017-11-06 13:26:21 +03:00
};
}