depot/third_party/nixpkgs/pkgs/applications/video/catt/default.nix
Default email 86f042a55b Project import generated by Copybara.
GitOrigin-RevId: c7d0dbe094c988209edac801eb2a0cc21aa498d8
2021-02-22 21:28:39 +00:00

32 lines
699 B
Nix

{ lib, python3 }:
with python3.pkgs;
buildPythonApplication rec {
pname = "catt";
version = "0.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-6RUeinHhAvvSz38hHQP5/MXNiY00rCM8k2ONaFYbwPc=";
};
propagatedBuildInputs = [
click
ifaddr
PyChromecast
requests
youtube-dl
];
doCheck = false; # attempts to access various URLs
pythonImportsCheck = [ "catt" ];
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 ];
};
}