about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorLucas Ransan <lucas@ransan.tk>2021-02-04 14:57:33 +0100
committerLucas Ransan <lucas@ransan.tk>2021-02-04 14:57:33 +0100
commitb50eb901dcfd167588ef3ccc43427db9249d0ee8 (patch)
treefd85c1303711aacc5eb0667ee2776ac47c783fe2 /pkgs/applications/video
parentda13b4418f9dec3b720e94a03c35d508f854cda7 (diff)
tartube: 2.3.042 -> 2.3.085
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/tartube/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/applications/video/tartube/default.nix b/pkgs/applications/video/tartube/default.nix
index 12525da35c405..3619d4ee5e32e 100644
--- a/pkgs/applications/video/tartube/default.nix
+++ b/pkgs/applications/video/tartube/default.nix
@@ -10,17 +10,18 @@
 , youtube-dl
 , glib
 , ffmpeg
+, aria
 }:
 
 python3Packages.buildPythonApplication rec {
   pname = "tartube";
-  version = "2.3.042";
+  version = "2.3.085";
 
   src = fetchFromGitHub {
     owner = "axcore";
     repo = "tartube";
     rev = "v${version}";
-    sha256 = "117q4s2b2js3204506qv3kjcsy3amcf0mpwj6q0ixs1256ilkxwj";
+    sha256 = "bkz64nj6748552ZMRcL/I1lUXGpZjaATUEqv3Kkphck=";
   };
 
   nativeBuildInputs = [
@@ -38,6 +39,8 @@ python3Packages.buildPythonApplication rec {
     feedparser
     playsound
     ffmpeg
+    matplotlib
+    aria
   ];
 
   buildInputs = [
@@ -49,7 +52,7 @@ python3Packages.buildPythonApplication rec {
   ];
 
   postPatch = ''
-    sed -i "/^\s*install_requires/s/, 'pgi'\|'pgi', \|'pgi'//" setup.py
+    sed -i "/^\s*'pgi',$/d" setup.py
   '';
 
   postInstall = ''