fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
36 lines
706 B
Nix
36 lines
706 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.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
|
description = "XMPP library for Python";
|
|
license = licenses.mit;
|
|
homepage = "http://sleekxmpp.com/";
|
|
};
|
|
}
|