summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-10-24 03:04:56 -0500
committerWill Dietz <w@wdtz.org>2019-10-24 03:25:56 -0500
commit2bfd58a9cd0a6771db074d87bfd76a96273ffffa (patch)
tree7d1dcf1895e4cc3135dcf13c1d526a4c2a3da132 /pkgs/applications/video
parent8b0beaedd2efe8207c9bb28b5fab20c176a6d8e3 (diff)
downloadnixpkgs-2bfd58a9cd0a6771db074d87bfd76a96273ffffa.tar
nixpkgs-2bfd58a9cd0a6771db074d87bfd76a96273ffffa.tar.gz
nixpkgs-2bfd58a9cd0a6771db074d87bfd76a96273ffffa.tar.bz2
nixpkgs-2bfd58a9cd0a6771db074d87bfd76a96273ffffa.tar.lz
nixpkgs-2bfd58a9cd0a6771db074d87bfd76a96273ffffa.tar.xz
nixpkgs-2bfd58a9cd0a6771db074d87bfd76a96273ffffa.tar.zst
nixpkgs-2bfd58a9cd0a6771db074d87bfd76a96273ffffa.zip
catt: init at 0.10.2
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/catt/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/video/catt/default.nix b/pkgs/applications/video/catt/default.nix
new file mode 100644
index 00000000000..1f2b2535931
--- /dev/null
+++ b/pkgs/applications/video/catt/default.nix
@@ -0,0 +1,31 @@
+{ buildPythonApplication, fetchPypi, lib
+, youtube-dl
+, PyChromecast
+, click
+, ifaddr
+, requests
+}:
+
+buildPythonApplication rec {
+  pname = "catt";
+  version = "0.10.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0n6aa2vvbq0z3vcg4cylhpqxch783cxvxk234647knklgg9vdf1r";
+  };
+
+  propagatedBuildInputs = [
+    youtube-dl PyChromecast click ifaddr requests
+  ];
+
+  doCheck = false; # attempts to access various URLs
+
+  meta = with lib; {
+    description = "Cast All The Things allows you to send videos from many, many online sources to your Chromecast";
+    homepage = "https://github.com/skorokithakis/catt";
+    license = licenses.bsd2;
+    maintainers = with maintainers; [ dtzWill ];
+  };
+}
+