Unverified Commit 055698b1 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

home-assistant: 2025.12.4 -> 2025.12.5 (#475170)

parents 1493ee28 6cc0233a
Loading
Loading
Loading
Loading
+0 −43
Original line number Diff line number Diff line
{
  lib,
  authlib,
  buildPythonPackage,
  fetchFromGitHub,
  httpx,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "aiosenz";
  version = "1.0.0";
  format = "pyproject";

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "milanmeu";
    repo = "aiosenz";
    rev = version;
    hash = "sha256-ODdWPS14zzptxuS6mff51f0s1SYnIqjF40DmvT0sL0w=";
  };

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [
    httpx
    authlib
  ];

  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [ "aiosenz" ];

  meta = {
    description = "Python wrapper for the nVent Raychem SENZ RestAPI";
    homepage = "https://github.com/milanmeu/aiosenz";
    license = with lib.licenses; [ lgpl3Plus ];
    maintainers = with lib.maintainers; [ fab ];
  };
}
+4 −6
Original line number Diff line number Diff line
@@ -2,20 +2,18 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "insteon-frontend-home-assistant";
  version = "0.5.0";
  version = "0.6.0";
  pyproject = true;

  disabled = pythonOlder "3.10";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-NZwnx8tlXnsVCk4nvNjOg3cjSr2CnjqWcZG7xFTC2wA=";
    pname = "insteon_frontend_home_assistant";
    inherit version;
    hash = "sha256-oBTk7gblJA6/w0wSx+efdEmY5ioJiRMUfDqjyg0LkFg=";
  };

  nativeBuildInputs = [ setuptools ];
+3 −3
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@

buildPythonPackage rec {
  pname = "py-melissa-climate";
  version = "3.0.2";
  version = "3.0.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "kennedyshead";
    repo = "py-melissa-climate";
    tag = "v${version}";
    hash = "sha256-VSKSa7K2fF6NMLN39HzkqK7/9vGHmmmPFw6mIiJNZ84=";
    tag = "V${version}";
    hash = "sha256-vKnIFrviCJLMqYUdKKJtqOmD1ZtgtMBMLApG+YiqZdY=";
  };

  build-system = [ setuptools ];
+41 −0
Original line number Diff line number Diff line
{
  authlib,
  buildPythonPackage,
  fetchFromGitHub,
  httpx,
  lib,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pysenz";
  version = "1.0.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "nordicopen";
    repo = "pysenz";
    tag = "v${version}";
    hash = "sha256-gS9dsGQ8waOlUbHWHiJbQrvh4RdFb4SNEH4J4TbT2x8=";
  };

  build-system = [ setuptools ];

  dependencies = [
    authlib
    httpx
  ];

  pythonImportsCheck = [ "pysenz" ];

  # upstream has no tests
  doCheck = false;

  meta = {
    changelog = "https://github.com/nordicopen/pysenz/releases/tag/${src.tag}";
    description = "Async Typed Python package for the Chemelex (nVent) RAYCHEM SENZ RestAPI";
    homepage = "https://github.com/nordicopen/pysenz";
    license = lib.licenses.lgpl3Plus;
    maintainers = [ lib.maintainers.dotlambda ];
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -23,14 +23,14 @@

buildPythonPackage rec {
  pname = "python-roborock";
  version = "3.19.0";
  version = "4.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Python-roborock";
    repo = "python-roborock";
    tag = "v${version}";
    hash = "sha256-nCewSP0ZgQvjZ4Ie4/kTzxxmJ5Zsm5i3EuW4ZiDBPMg=";
    hash = "sha256-Wf9nJDcNOLIuIskiDyGYo4TwekQprW4o99oJLkaV5X4=";
  };

  pythonRelaxDeps = [ "pycryptodome" ];
Loading