0d1516e198
The project has not been updated to work with Python 3.10, is archived and recommends using slixmpp instead.
28 lines
663 B
Nix
28 lines
663 B
Nix
{ stdenv, lib, fetchPypi, buildPythonPackage, pythonAtLeast, dnspython, pyasn1 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sleekxmpp";
|
|
version = "1.3.3";
|
|
|
|
disabled = pythonAtLeast "3.10"; # Deprecated in favor of Slixmpp
|
|
|
|
propagatedBuildInputs = [ dnspython pyasn1 ];
|
|
|
|
patches = [
|
|
./dnspython-ip6.patch
|
|
];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d213c1de71d92505f95ced0460ee0f84fdc4ddcacb7d7dd343739ed4028e5569";
|
|
};
|
|
|
|
meta = with lib; {
|
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
|
description = "XMPP library for Python";
|
|
license = licenses.mit;
|
|
homepage = "http://sleekxmpp.com/";
|
|
};
|
|
|
|
}
|