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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.7 KiB
Nix
Raw Normal View History

2021-09-21 11:41:20 +03:00
{ lib
, fetchFromGitHub
, python3
}:
2019-10-24 11:04:56 +03:00
2021-09-21 11:41:20 +03:00
let
py = python3.override {
packageOverrides = self: super: {
# Upstream is pinning releases incl. dependencies of their dependencies
zeroconf = super.zeroconf.overridePythonAttrs (oldAttrs: rec {
version = "0.31.0";
src = fetchFromGitHub {
owner = "jstasiak";
repo = "python-zeroconf";
rev = version;
sha256 = "158dqay74zvnz6kmpvip4ml0kw59nf2aaajwgaamx0zc8ci1p5pj";
};
});
click = super.click.overridePythonAttrs (oldAttrs: rec {
version = "7.1.2";
src = oldAttrs.src.override {
inherit version;
sha256 = "06kbzd6sjfkqan3miwj9wqyddfxc2b6hi7p5s4dvqjb3gif2bdfj";
};
});
PyChromecast = super.PyChromecast.overridePythonAttrs (oldAttrs: rec {
version = "9.2.0";
src = oldAttrs.src.override {
inherit version;
sha256 = "02ig2wf2yyrnnl88r2n13s1naskwsifwgx3syifmcxygflsmjd3d";
};
});
};
};
in
with py.pkgs;
2020-08-27 18:45:27 +03:00
2021-02-22 22:14:25 +03:00
buildPythonApplication rec {
2019-10-24 11:04:56 +03:00
pname = "catt";
version = "0.12.2";
2019-10-24 11:04:56 +03:00
2021-09-21 11:41:20 +03:00
disabled = python3.pythonOlder "3.4";
2019-10-24 11:04:56 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-BOETKTkcbLOu5SubiejswU7D47qWS13QZ7rU9x3jf5Y=";
2019-10-24 11:04:56 +03:00
};
propagatedBuildInputs = [
2021-02-22 22:14:25 +03:00
click
ifaddr
PyChromecast
requests
youtube-dl
2019-10-24 11:04:56 +03:00
];
doCheck = false; # attempts to access various URLs
2021-09-21 11:41:20 +03:00
2021-02-22 22:14:25 +03:00
pythonImportsCheck = [ "catt" ];
2019-10-24 11:04:56 +03:00
meta = with lib; {
2021-09-21 11:41:20 +03:00
description = "Tool to send media from online sources to Chromecast devices";
2019-10-24 11:04:56 +03:00
homepage = "https://github.com/skorokithakis/catt";
license = licenses.bsd2;
maintainers = with maintainers; [ dtzWill ];
};
}