python.pkgs.nbxmpp: 0.5.5 -> 0.6.0

This commit is contained in:
Joerg Thalheim
2017-11-06 10:26:21 +00:00
parent 0fe9606967
commit 53973938f1
2 changed files with 18 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "nbxmpp";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "0x495yb0abkdspyziw7dyyjwxx6ivnv5zznk92wa3mcind5s9757";
};
meta = with stdenv.lib; {
homepage = "https://dev.gajim.org/gajim/python-nbxmpp";
description = "Non-blocking Jabber/XMPP module";
license = licenses.gpl3;
};
}