summary refs log tree commit diff
path: root/pkgs/development/python-modules/nbxmpp/default.nix
blob: 531232bf8e6eb9bff4a53ec09496f83d20280761 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildPythonPackage, fetchzip, gobject-introspection, idna, libsoup, precis-i18n, pygobject3, pyopenssl }:

let
  pname = "nbxmpp";
  version = "1.0.2";
  name = "${pname}-${version}";
in buildPythonPackage {
  inherit pname version;
  # 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 = "1rhzsakqrybzq5j5b9400wjd14pncph47c1ggn5a6f3di03lk4az";
  };

  buildInputs = [ precis-i18n ];
  propagatedBuildInputs = [ gobject-introspection idna libsoup pygobject3 pyopenssl ];

  meta = with lib; {
    homepage = "https://dev.gajim.org/gajim/python-nbxmpp";
    description = "Non-blocking Jabber/XMPP module";
    license = licenses.gpl3;
    maintainers = with maintainers; [ abbradar ];
  };
}