7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
37 lines
751 B
Nix
37 lines
751 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
pythonAtLeast,
|
|
dnspython,
|
|
pyasn1,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sleekxmpp";
|
|
version = "1.3.3";
|
|
format = "setuptools";
|
|
|
|
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.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin;
|
|
description = "XMPP library for Python";
|
|
license = licenses.mit;
|
|
homepage = "http://sleekxmpp.com/";
|
|
};
|
|
}
|