about summary refs log tree commit diff
path: root/pkgs/tools/misc/swaglyrics
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-10 12:22:33 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-16 10:56:42 -0800
commitea6ae87eed766036977d5b38115fe4061d433f66 (patch)
treef3813bc173ebba9b9be80fa1e9482982e0313dbf /pkgs/tools/misc/swaglyrics
parentafc9b7bb5f3d75deaab5dbca7d95d2187f6ef14a (diff)
pythonPackages.swaglyrics: Fix dependencies
Diffstat (limited to 'pkgs/tools/misc/swaglyrics')
-rw-r--r--pkgs/tools/misc/swaglyrics/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/misc/swaglyrics/default.nix b/pkgs/tools/misc/swaglyrics/default.nix
index 6831a05a3edce..c24b12f953926 100644
--- a/pkgs/tools/misc/swaglyrics/default.nix
+++ b/pkgs/tools/misc/swaglyrics/default.nix
@@ -17,7 +17,9 @@ python3.pkgs.buildPythonApplication rec {
 
   preConfigure = ''
     substituteInPlace setup.py \
-      --replace 'requests>=2.24.0' 'requests~=2.23'
+      --replace 'requests>=2.24.0' 'requests~=2.23' \
+      --replace 'beautifulsoup4==4.9.1' 'beautifulsoup4~=4.9' \
+      --replace 'colorama==0.4.3' 'colorama~=0.4'
   '';
 
   preBuild = "export HOME=$NIX_BUILD_TOP";