Merge pull request #71895 from dtzWill/feature/catt

catt: init at 0.10.2
This commit is contained in:
Renaud 2019-10-25 21:15:15 +02:00 committed by GitHub
commit 83da13bd25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -17833,6 +17833,8 @@ in
catimg = callPackage ../tools/misc/catimg { };
catt = python3Packages.callPackage ../applications/video/catt { };
cava = callPackage ../applications/audio/cava { };
cb2bib = libsForQt5.callPackage ../applications/office/cb2bib { };