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

72 lines
1.7 KiB
Nix
Raw Normal View History

2021-09-21 09:41:20 +01:00
{ lib
, fetchFromGitHub
, python3
}:
2019-10-24 09:04:56 +01:00
2021-09-21 09:41:20 +01: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;
2023-01-04 02:06:48 +00:00
hash = "sha256-8pYbIkPsg16VelwqpYSzqfAJaCU37lun+XZ/crzCDZU=";
2021-09-21 09:41:20 +01:00
};
});
click = super.click.overridePythonAttrs (oldAttrs: rec {
version = "7.1.2";
src = oldAttrs.src.override {
inherit version;
hash = "sha256-0rUlXHxjSbwb0eWeCM0SrLvWPOZJ8liHVXg6qU37axo=";
2021-09-21 09:41:20 +01:00
};
});
pychromecast = super.pychromecast.overridePythonAttrs (oldAttrs: rec {
2021-09-21 09:41:20 +01:00
version = "9.2.0";
src = oldAttrs.src.override {
inherit version;
2023-01-04 02:06:48 +00:00
hash = "sha256-bTRZNXXPd1Zd9Hr0x13UfGplgx7BiowQtTZ7LxwXLwo=";
2021-09-21 09:41:20 +01:00
};
});
};
};
in
with py.pkgs;
2020-08-27 16:45:27 +01:00
2021-02-22 19:14:25 +00:00
buildPythonApplication rec {
2019-10-24 09:04:56 +01:00
pname = "catt";
2022-06-13 11:55:11 +01:00
version = "0.12.7";
format = "setuptools";
2021-09-21 09:41:20 +01:00
2019-10-24 09:04:56 +01:00
src = fetchPypi {
inherit pname version;
2022-06-13 11:55:11 +01:00
hash = "sha256-Q9ePWRLwuuTG+oPKFg7xn1gj4uAVlXUxegWdyH3Yd90=";
2019-10-24 09:04:56 +01:00
};
propagatedBuildInputs = [
2021-02-22 19:14:25 +00:00
click
ifaddr
pychromecast
2022-06-13 11:55:11 +01:00
protobuf
2021-02-22 19:14:25 +00:00
requests
2022-06-13 11:55:11 +01:00
yt-dlp
2019-10-24 09:04:56 +01:00
];
doCheck = false; # attempts to access various URLs
2021-09-21 09:41:20 +01:00
2022-06-13 11:55:11 +01:00
pythonImportsCheck = [
"catt"
];
2019-10-24 09:04:56 +01:00
meta = with lib; {
2021-09-21 09:41:20 +01:00
description = "Tool to send media from online sources to Chromecast devices";
2019-10-24 09:04:56 +01:00
homepage = "https://github.com/skorokithakis/catt";
license = licenses.bsd2;
maintainers = with maintainers; [ dtzWill ];
};
}