python.pkgs.nbxmpp: 0.6.3 -> 0.6.4

This commit is contained in:
Nikolay Amiantov 2018-03-21 04:08:42 +03:00
parent 1c810f5f83
commit cf981d3e2b

View file

@ -1,17 +1,30 @@
{ stdenv, buildPythonPackage, fetchPypi }:
{ stdenv, buildPythonPackage, fetchzip, pyopenssl }:
buildPythonPackage rec {
pname = "nbxmpp";
version = "0.6.3";
version = "0.6.4";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "dd66e701a4856e3cace8f4865837ccc9bcfcdb286df01f01aa19531f5d834a83";
# 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 = "0mikgksf01w82wnnm0phmzkijk2c93g24fzd59s71n3zy7f7dx3l";
};
propagatedBuildInputs = [ pyopenssl ];
checkPhase = ''
# Disable tests requiring networking
echo "" > test/unit/test_xmpp_transports_nb2.py
python test/runtests.py
'';
meta = with stdenv.lib; {
homepage = "https://dev.gajim.org/gajim/python-nbxmpp";
description = "Non-blocking Jabber/XMPP module";
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];
};
}