2023-09-19 01:41:05 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
setuptools,
|
|
|
|
requests,
|
|
|
|
ssdpy,
|
|
|
|
appdirs,
|
|
|
|
pygobject3,
|
|
|
|
gobject-introspection,
|
|
|
|
gtk3,
|
2024-04-26 20:24:03 +00:00
|
|
|
wrapGAppsHook3,
|
2024-07-12 17:35:16 +00:00
|
|
|
buildPythonPackage,
|
2023-09-19 01:41:05 +00:00
|
|
|
buildApplication ? false,
|
|
|
|
}:
|
|
|
|
|
2024-07-12 17:35:16 +00:00
|
|
|
buildPythonPackage rec {
|
2023-09-19 01:41:05 +00:00
|
|
|
pname = "controku";
|
|
|
|
version = "1.1.0";
|
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "benthetechguy";
|
|
|
|
repo = "controku";
|
|
|
|
rev = version;
|
|
|
|
hash = "sha256-sye2GtL3a77pygllZc6ylaIP7faPb+NFbyKKyqJzIXw=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs =
|
|
|
|
[ setuptools ]
|
|
|
|
++ lib.optionals buildApplication [
|
|
|
|
gobject-introspection
|
2024-04-26 20:24:03 +00:00
|
|
|
wrapGAppsHook3
|
2023-09-19 01:41:05 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs =
|
|
|
|
[
|
|
|
|
requests
|
|
|
|
ssdpy
|
|
|
|
]
|
|
|
|
++ lib.optionals buildApplication [
|
|
|
|
gtk3
|
|
|
|
appdirs
|
|
|
|
pygobject3
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "controku" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://github.com/benthetechguy/controku/releases/tag/${version}";
|
|
|
|
description = "Control Roku devices from the comfort of your own desktop";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "controku";
|
2023-09-19 01:41:05 +00:00
|
|
|
homepage = "https://github.com/benthetechguy/controku";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ mjm ];
|
|
|
|
};
|
|
|
|
}
|