Unverified Commit 1b6f324b authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python313Packages.pyeiscp: init at 0.0.7

parent 622926a4
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; [ ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11684,6 +11684,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 { };