python3Packages.horimote: init at 0.4.1 (#436650)

This commit is contained in:
Martin Weinelt
2025-08-28 21:05:37 +02:00
committed by GitHub
3 changed files with 38 additions and 1 deletions
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "horimote";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "benleb";
repo = "horimote";
tag = "v${version}";
hash = "sha256-rEtE0Z/PV/n9pz2mLbHeREv/sl4SexTSOq2yx4LDnAo=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "horimote" ];
meta = {
description = "Async API wrapper for Samsung's set-top boxes SMT-G7400 and SMT-G7401";
homepage = "https://github.com/benleb/horimote";
changelog = "https://github.com/benleb/horimote/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -2429,7 +2429,8 @@
];
"horizon" =
ps: with ps; [
]; # missing inputs: horimote
horimote
];
"hp_ilo" =
ps: with ps; [
python-hpilo
+2
View File
@@ -6660,6 +6660,8 @@ self: super: with self; {
hopcroftkarp = callPackage ../development/python-modules/hopcroftkarp { };
horimote = callPackage ../development/python-modules/horimote { };
horizon-eda = callPackage ../development/python-modules/horizon-eda { inherit (pkgs) horizon-eda; };
housekeeping = callPackage ../development/python-modules/housekeeping { };