mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 10:24:07 +00:00
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:
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 = [
|
||||
|
Loading…
Reference in New Issue
Block a user