mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
catt: init at 0.10.2
This commit is contained in:
parent
8b0beaedd2
commit
2bfd58a9cd
31
pkgs/applications/video/catt/default.nix
Normal file
31
pkgs/applications/video/catt/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -17828,6 +17828,8 @@ in
|
|||||||
|
|
||||||
catimg = callPackage ../tools/misc/catimg { };
|
catimg = callPackage ../tools/misc/catimg { };
|
||||||
|
|
||||||
|
catt = python3Packages.callPackage ../applications/video/catt { };
|
||||||
|
|
||||||
cava = callPackage ../applications/audio/cava { };
|
cava = callPackage ../applications/audio/cava { };
|
||||||
|
|
||||||
cb2bib = libsForQt5.callPackage ../applications/office/cb2bib { };
|
cb2bib = libsForQt5.callPackage ../applications/office/cb2bib { };
|
||||||
|
Loading…
Reference in New Issue
Block a user