python3Packages.sleekxmpp: disable on python3.10

The project has not been updated to work with Python 3.10, is archived
and recommends using slixmpp instead.
This commit is contained in:
Martin Weinelt
2022-06-06 11:46:26 -07:00
committed by Jonathan Ringer
parent ea66d03135
commit 0d1516e198
@@ -1,9 +1,11 @@
{ stdenv, lib, fetchPypi, buildPythonPackage, dnspython, pyasn1 }:
{ 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 = [