python3Packages.pytelegrambotapi: add implicit dependency

This commit is contained in:
Jonathan Ringer
2021-12-07 23:02:33 -08:00
parent 2afc6ef050
commit bca377b4e5

View File

@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, requests }:
{ lib, buildPythonPackage, fetchPypi, aiohttp, requests }:
buildPythonPackage rec {
pname = "pyTelegramBotAPI";
@@ -9,7 +9,7 @@ buildPythonPackage rec {
sha256 = "9a407fd58a406a53ae44ae8ff5f2edb4396be67bca3436523f791642d8561de3";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [ aiohttp requests ];
meta = with lib; {
homepage = "https://github.com/eternnoir/pyTelegramBotAPI";