Commit 5df8a843 authored by Robert Schütz's avatar Robert Schütz
Browse files

python313Packages.niko-home-control: drop

parent b4276ef1
Loading
Loading
Loading
Loading
+0 −42
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  nclib,
  netaddr,
  netifaces,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "niko-home-control";
  version = "0.3.0";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "NoUseFreak";
    repo = pname;
    rev = version;
    sha256 = "sha256-n/uQAX2LgxeGTRF56+G5vm5wbeTQQQODV4EKaPgKw1k=";
  };

  propagatedBuildInputs = [
    nclib
    netaddr
    netifaces
  ];

  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [ "nikohomecontrol" ];

  meta = with lib; {
    description = "Python SDK for Niko Home Control";
    homepage = "https://github.com/NoUseFreak/niko-home-control";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -379,6 +379,7 @@ mapAliases ({
  mypy-boto3-mobile = throw "mypy-boto3-mobile was removed because it is unmaintained"; # added 2024-09-04
  net2grid = gridnet; # add 2022-04-22
  nghttp2 = throw "in 1.52.0 removed deprecated python bindings."; # added 2023-06-08
  niko-home-control = throw "niko-home-control was removed because Home Assistant switched to nhc"; # added 2025-01-09
  ninja-python = ninja; # add 2022-08-03
  nose = throw "nose has been removed since it has been deprecated and unmaintained for almost a decade and does not work on Python 3.12; please switch to pytest or another test runner/framework"; # added 2024-07-28
  nose3 = throw "nose3 has been removed since it is unmaintained and does not work with Python 3.12"; # added 2024-07-28
+0 −2
Original line number Diff line number Diff line
@@ -9242,8 +9242,6 @@ self: super: with self; {
  nikola = callPackage ../development/python-modules/nikola { };
  niko-home-control = callPackage ../development/python-modules/niko-home-control { };
  nilearn = callPackage ../development/python-modules/nilearn { };
  niluclient = callPackage ../development/python-modules/niluclient { };