From d339c458150b99b47769c7ca163fd65b5d3af06c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 13 Jun 2022 12:55:11 +0200 Subject: [PATCH] catt: 0.12.2 -> 0.12.7 --- pkgs/applications/video/catt/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/video/catt/default.nix b/pkgs/applications/video/catt/default.nix index 1f75997ce7b..4a19121f34a 100644 --- a/pkgs/applications/video/catt/default.nix +++ b/pkgs/applications/video/catt/default.nix @@ -39,26 +39,27 @@ with py.pkgs; buildPythonApplication rec { pname = "catt"; - version = "0.12.2"; - - disabled = python3.pythonOlder "3.4"; + version = "0.12.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-BOETKTkcbLOu5SubiejswU7D47qWS13QZ7rU9x3jf5Y="; + hash = "sha256-Q9ePWRLwuuTG+oPKFg7xn1gj4uAVlXUxegWdyH3Yd90="; }; propagatedBuildInputs = [ click ifaddr PyChromecast + protobuf requests - youtube-dl + yt-dlp ]; doCheck = false; # attempts to access various URLs - pythonImportsCheck = [ "catt" ]; + pythonImportsCheck = [ + "catt" + ]; meta = with lib; { description = "Tool to send media from online sources to Chromecast devices";