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

32 lines
895 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchzip, pyopenssl, python }:
2017-11-06 10:26:21 +00:00
let
2017-11-06 10:26:21 +00:00
pname = "nbxmpp";
version = "0.6.6";
2018-03-21 01:08:42 +00:00
name = "${pname}-${version}";
in buildPythonPackage rec {
inherit pname version;
2018-03-21 01:08:42 +00: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 = "10n7z613p00q15dplsvdrz11s9yq26jy2qack6nd8k7fivfhlcmz";
2017-11-06 10:26:21 +00:00
};
2018-03-21 01:08:42 +00:00
propagatedBuildInputs = [ pyopenssl ];
checkPhase = ''
# Disable tests requiring networking
echo "" > test/unit/test_xmpp_transports_nb2.py
${python.executable} test/runtests.py
2018-03-21 01:08:42 +00:00
'';
2017-11-06 10:26:21 +00: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 01:08:42 +00:00
maintainers = with maintainers; [ abbradar ];
2017-11-06 10:26:21 +00:00
};
}