mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +00:00
python312Packages.yowsup: unbreak with missing pyasyncore
This commit is contained in:
parent
af731570c8
commit
84871db15f
@ -1,5 +1,6 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, isPy3k
|
||||
, fetchFromGitHub
|
||||
, appdirs
|
||||
@ -7,6 +8,7 @@
|
||||
, protobuf
|
||||
, python-axolotl
|
||||
, six
|
||||
, pyasyncore
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
@ -42,6 +44,9 @@ buildPythonPackage rec {
|
||||
protobuf
|
||||
python-axolotl
|
||||
six
|
||||
]
|
||||
++ lib.optionals (!pythonOlder "3.12") [
|
||||
pyasyncore
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user