about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-10-12 22:54:23 +0200
committerGitHub <noreply@github.com>2021-10-12 22:54:23 +0200
commit1db17e35778cc29caa9ca9ea46cb810586e66cb8 (patch)
tree5a715a28d40bf02800f2827c2875e4f2834c3735 /pkgs
parent586312a65d5ddf250758ef82ea7f4d69c325e448 (diff)
parent475e2a7e33ca5b3a8197e3dff7ce655bc31b959f (diff)
Merge pull request #141402 from fabaff/fix-python-telegram-bot
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/python-telegram-bot/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python-telegram-bot/default.nix b/pkgs/development/python-modules/python-telegram-bot/default.nix
index 6ddc4543d3d03..e188a3ef86862 100644
--- a/pkgs/development/python-modules/python-telegram-bot/default.nix
+++ b/pkgs/development/python-modules/python-telegram-bot/default.nix
@@ -36,13 +36,15 @@ buildPythonPackage rec {
     rm -r telegram/vendor
 
     substituteInPlace requirements.txt \
-      --replace 'APScheduler==3.6.3' 'APScheduler'
+      --replace "APScheduler==3.6.3" "APScheduler" \
+      --replace "cachetools==4.2.2" "cachetools"
   '';
 
   setupPyGlobalFlags = "--with-upstream-urllib3";
 
   # tests not included with release
   doCheck = false;
+
   pythonImportsCheck = [ "telegram" ];
 
   meta = with lib; {