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-05 04:46:41 +02:00 committed by Jonathan Ringer
parent ea66d03135
commit 0d1516e198
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -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 = [