python38Packages.telethon: add missing openssl input

This commit is contained in:
udf 2020-09-07 22:47:30 +02:00
parent 5f4b7ad06b
commit ffb0d37258
No known key found for this signature in database
GPG key ID: F17AECB58C3A3096
2 changed files with 4 additions and 2 deletions

View file

@ -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";

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 { };