summary refs log tree commit diff
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2021-05-09 09:35:15 +0200
committerfreezeboy <freezeboy@users.noreply.github.com>2021-05-09 09:35:15 +0200
commit16a600d29e03751e0a025bfc212f0621778013ab (patch)
tree1bd707229cddcbd7585f3554e1bea0056aa1623d
parent22a9ec8edad4b25f4eb653f779ca85457b7c4cd5 (diff)
downloadnixpkgs-16a600d29e03751e0a025bfc212f0621778013ab.tar
nixpkgs-16a600d29e03751e0a025bfc212f0621778013ab.tar.gz
nixpkgs-16a600d29e03751e0a025bfc212f0621778013ab.tar.bz2
nixpkgs-16a600d29e03751e0a025bfc212f0621778013ab.tar.lz
nixpkgs-16a600d29e03751e0a025bfc212f0621778013ab.tar.xz
nixpkgs-16a600d29e03751e0a025bfc212f0621778013ab.tar.zst
nixpkgs-16a600d29e03751e0a025bfc212f0621778013ab.zip
tuir: unbreak adding six dependency
-rw-r--r--pkgs/applications/misc/tuir/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/tuir/default.nix b/pkgs/applications/misc/tuir/default.nix
index c086cdb9503..fb1a85b1e49 100644
--- a/pkgs/applications/misc/tuir/default.nix
+++ b/pkgs/applications/misc/tuir/default.nix
@@ -21,7 +21,7 @@ buildPythonApplication rec {
 
   checkInputs = [ coverage coveralls docopt mock pylint pytest vcrpy ];
 
-  propagatedBuildInputs = [ beautifulsoup4 decorator kitchen requests ];
+  propagatedBuildInputs = [ beautifulsoup4 decorator kitchen requests six ];
 
   meta = with lib; {
     description = "Browse Reddit from your Terminal (fork of rtv)";