python38Packages.telethon: add missing openssl input
This commit is contained in:
parent
5f4b7ad06b
commit
ffb0d37258
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, async_generator, rsa, pyaes, pythonOlder }:
|
||||
{ lib, buildPythonPackage, fetchPypi, openssl, async_generator, rsa, pyaes, pythonOlder }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "telethon";
|
||||
|
|
|
@ -6797,7 +6797,9 @@ in {
|
|||
|
||||
telegram = callPackage ../development/python-modules/telegram { };
|
||||
|
||||
telethon = callPackage ../development/python-modules/telethon { };
|
||||
telethon = callPackage ../development/python-modules/telethon {
|
||||
inherit (pkgs) openssl;
|
||||
};
|
||||
|
||||
telethon-session-sqlalchemy = callPackage ../development/python-modules/telethon-session-sqlalchemy { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue