From c6a30e291ae4d9dd46498b6d81068a30b3c5a691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 16 Nov 2025 08:51:23 -0800 Subject: [PATCH] python3Packages.pytibber: 0.32.2 -> 0.33.1 Diff: https://github.com/Danielhiversen/pyTibber/compare/0.32.2...0.33.1 Changelog: https://github.com/Danielhiversen/pyTibber/releases/tag/0.33.0 https://github.com/Danielhiversen/pyTibber/releases/tag/0.33.1 --- pkgs/development/python-modules/pytibber/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pytibber/default.nix b/pkgs/development/python-modules/pytibber/default.nix index 9b36237895fd..721d73368ec6 100644 --- a/pkgs/development/python-modules/pytibber/default.nix +++ b/pkgs/development/python-modules/pytibber/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "pytibber"; - version = "0.32.2"; + version = "0.33.1"; pyproject = true; disabled = pythonOlder "3.11"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "Danielhiversen"; repo = "pyTibber"; tag = version; - hash = "sha256-gMXbDpkb+LVIxVkYliskEeHOrkJxAuJdYxUEC4wp3r8="; + hash = "sha256-UzPS7EukcnBWfsAANgpmOmWWI9Nv8eKocceVrmlISJg="; }; build-system = [ setuptools ]; @@ -38,8 +38,10 @@ buildPythonPackage rec { pytestCheckHook ]; - # Tests access network - doCheck = false; + disabledTestPaths = [ + # Tests access network + "test/test_tibber.py" + ]; pythonImportsCheck = [ "tibber" ];