Unverified Commit 2e853059 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Packages.horimote: init at 0.4.1 (#436650)

parents da5b3109 acca207c
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −1
Original line number Diff line number Diff line
@@ -2429,7 +2429,8 @@
      ];
    "horizon" =
      ps: with ps; [
      ]; # missing inputs: horimote
        horimote
      ];
    "hp_ilo" =
      ps: with ps; [
        python-hpilo
+2 −0
Original line number Diff line number Diff line
@@ -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 { };