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

python313Packages.pyeiscp: init at 0.0.7 (#374693)

parents e969a11f 57f28371
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  netifaces,
}:

buildPythonPackage {
  pname = "pyeiscp";
  version = "0.0.7";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "winterscar";
    repo = "python-eiscp";
    rev = "5f9ab5428ffa27a813dbfb00d392a0f76055137a"; # this is 0.0.7; tags are weird and from the original project this was forked from
    hash = "sha256-jmOPX0PnrKOs9kQZxlEpvp6Ck0kYXfWE6TgtKsOAHfs=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    netifaces
  ];

  doCheck = false; # no useful tests

  pythonImportsCheck = [
    "pyeiscp"
  ];

  meta = {
    description = "Python asyncio module to interface with Anthem AVM and MRX receivers";
    homepage = "https://github.com/winterscar/python-eiscp";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  };
}
+3 −1
Original line number Diff line number Diff line
@@ -3958,7 +3958,8 @@
      ];
    "onkyo" =
      ps: with ps; [
      ]; # missing inputs: pyeiscp
        pyeiscp
      ];
    "onvif" =
      ps: with ps; [
        ha-ffmpeg
@@ -7043,6 +7044,7 @@
    "oncue"
    "ondilo_ico"
    "onewire"
    "onkyo"
    "onvif"
    "open_meteo"
    "openai_conversation"
+2 −0
Original line number Diff line number Diff line
@@ -11690,6 +11690,8 @@ self: super: with self; {
  pyeight = callPackage ../development/python-modules/pyeight { };
  pyeiscp = callPackage ../development/python-modules/pyeiscp { };
  pyelectra = callPackage ../development/python-modules/pyelectra { };
  pyelftools = callPackage ../development/python-modules/pyelftools { };