python38Packages.telethon: add missing openssl input

This commit is contained in:
udf
2020-09-07 22:48:58 +02:00
parent 5f4b7ad06b
commit ffb0d37258
2 changed files with 4 additions and 2 deletions
@@ -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";
+3 -1
View File
@@ -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 { };