From 933a2dd0de4475eeebc607a46e4bd6daf4fafa74 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 24 Jul 2025 18:45:50 +0000 Subject: [PATCH 1/2] python3Packages.pyosohotwaterapi: 1.1.5 -> 1.2.0 --- pkgs/development/python-modules/pyosohotwaterapi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyosohotwaterapi/default.nix b/pkgs/development/python-modules/pyosohotwaterapi/default.nix index 74361496e18d..a92dfc256dd2 100644 --- a/pkgs/development/python-modules/pyosohotwaterapi/default.nix +++ b/pkgs/development/python-modules/pyosohotwaterapi/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "pyosohotwaterapi"; - version = "1.1.5"; + version = "1.2.0"; pyproject = true; disabled = pythonOlder "3.10"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "osohotwateriot"; repo = "apyosohotwaterapi"; tag = version; - hash = "sha256-jE8cwC18/M58WOVpMsUjIDVmFXLBvPwaAXOSZatpjX0="; + hash = "sha256-GFjA1RtJC2bxSoH2TIZwEdSAvpteYBTbsS81hhp4Y3E="; }; # https://github.com/osohotwateriot/apyosohotwaterapi/pull/3 From d1815feee49cfcc40323671724197ec3e153232f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 25 Jul 2025 20:59:46 +0200 Subject: [PATCH 2/2] python313Packages.pyosohotwaterapi: clean-up --- .../development/python-modules/pyosohotwaterapi/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/python-modules/pyosohotwaterapi/default.nix b/pkgs/development/python-modules/pyosohotwaterapi/default.nix index a92dfc256dd2..9ba2348636ff 100644 --- a/pkgs/development/python-modules/pyosohotwaterapi/default.nix +++ b/pkgs/development/python-modules/pyosohotwaterapi/default.nix @@ -5,7 +5,6 @@ fetchFromGitHub, loguru, numpy, - pythonOlder, setuptools, unasync, urllib3, @@ -16,8 +15,6 @@ buildPythonPackage rec { version = "1.2.0"; pyproject = true; - disabled = pythonOlder "3.10"; - src = fetchFromGitHub { owner = "osohotwateriot"; repo = "apyosohotwaterapi"; @@ -25,9 +22,6 @@ buildPythonPackage rec { hash = "sha256-GFjA1RtJC2bxSoH2TIZwEdSAvpteYBTbsS81hhp4Y3E="; }; - # https://github.com/osohotwateriot/apyosohotwaterapi/pull/3 - pythonRemoveDeps = [ "pre-commit" ]; - build-system = [ setuptools unasync