nixpkgs/pkgs/applications/video/catt/default.nix

32 lines
711 B
Nix
Raw Normal View History

2019-10-24 08:04:56 +00:00
{ buildPythonApplication, fetchPypi, lib
, youtube-dl
, PyChromecast
, click
, ifaddr
, requests
}:
buildPythonApplication rec {
pname = "catt";
2020-02-08 03:13:29 +00:00
version = "0.10.3";
2019-10-24 08:04:56 +00:00
src = fetchPypi {
inherit pname version;
2020-02-08 03:13:29 +00:00
sha256 = "08rjimcy9n7nvh4dz9693gjmkq6kaq5pq1nmjjsdrb7vb89yl53i";
2019-10-24 08:04:56 +00:00
};
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 ];
};
}