From c9f651e56ef70b62d10ef0c10642698f051798fe Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Tue, 2 Jul 2019 14:34:31 +0900 Subject: [PATCH] i3pystatus: drop praw dependency praw is a reddit wrapper that sometimes poses problems when installing i3pystatus (twice in the past 6 months for me). As its usage should be relatively low, it should be fine to drop. users can go back the old behavior by overriding extraLibs --- pkgs/applications/window-managers/i3/pystatus.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/window-managers/i3/pystatus.nix b/pkgs/applications/window-managers/i3/pystatus.nix index b44aa73bc5ae..27ac41809072 100644 --- a/pkgs/applications/window-managers/i3/pystatus.nix +++ b/pkgs/applications/window-managers/i3/pystatus.nix @@ -15,7 +15,7 @@ python3Packages.buildPythonApplication rec { sha256 = "0gw6sla73cid6gwxn2n4zmsg2svq5flf9zxly6x2rfljizgf0720"; }; - propagatedBuildInputs = with python3Packages; [ keyring colour netifaces praw psutil basiciw ] ++ + propagatedBuildInputs = with python3Packages; [ keyring colour netifaces psutil basiciw ] ++ [ libpulseaudio ] ++ extraLibs; libpulseaudioPath = stdenv.lib.makeLibraryPath [ libpulseaudio ];