summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-11-15 00:06:59 +0100
committerGitHub <noreply@github.com>2023-11-15 00:06:59 +0100
commit3ecd815c23516757701d89505863c6d76e6059ae (patch)
tree0b7b1901a5798e73b8075563904cccaa1a27aa01
parent07adfe6112b02bc477beda09f293472808f8e73c (diff)
parentd653ad6902808836643b957c70d46c8f72eb6375 (diff)
downloadnixpkgs-3ecd815c23516757701d89505863c6d76e6059ae.tar
nixpkgs-3ecd815c23516757701d89505863c6d76e6059ae.tar.gz
nixpkgs-3ecd815c23516757701d89505863c6d76e6059ae.tar.bz2
nixpkgs-3ecd815c23516757701d89505863c6d76e6059ae.tar.lz
nixpkgs-3ecd815c23516757701d89505863c6d76e6059ae.tar.xz
nixpkgs-3ecd815c23516757701d89505863c6d76e6059ae.tar.zst
nixpkgs-3ecd815c23516757701d89505863c6d76e6059ae.zip
Merge pull request #267465 from mweinelt/home-assistant-fixes
home-assistant: update disabled tests
-rw-r--r--pkgs/servers/home-assistant/default.nix29
-rw-r--r--pkgs/servers/home-assistant/tests.nix6
2 files changed, 6 insertions, 29 deletions
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 08d00531391..119c9af546f 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -279,35 +279,6 @@ let
         };
       });
 
-      python-telegram-bot = super.python-telegram-bot.overridePythonAttrs (oldAttrs: rec {
-        version = "13.15";
-        src = fetchFromGitHub {
-          owner = "python-telegram-bot";
-          repo = "python-telegram-bot";
-          rev = "v${version}";
-          hash = "sha256-EViSjr/nnuJIDTwV8j/O50hJkWV3M5aTNnWyzrinoyg=";
-        };
-        propagatedBuildInputs = [
-          self.apscheduler
-          self.cachetools
-          self.certifi
-          self.cryptography
-          self.decorator
-          self.future
-          self.tornado
-          self.urllib3
-        ];
-        setupPyGlobalFlags = [ "--with-upstream-urllib3" ];
-        postPatch = ''
-          rm -r telegram/vendor
-          substituteInPlace requirements.txt \
-            --replace "APScheduler==3.6.3" "APScheduler" \
-            --replace "cachetools==4.2.2" "cachetools" \
-            --replace "tornado==6.1" "tornado"
-        '';
-        doCheck = false;
-      });
-
       # Pinned due to API changes ~1.0
       vultr = super.vultr.overridePythonAttrs (oldAttrs: rec {
         version = "0.1.2";
diff --git a/pkgs/servers/home-assistant/tests.nix b/pkgs/servers/home-assistant/tests.nix
index e4561cdcc3e..63cd9558a69 100644
--- a/pkgs/servers/home-assistant/tests.nix
+++ b/pkgs/servers/home-assistant/tests.nix
@@ -49,6 +49,10 @@ let
       # tries to retrieve file from github
       "test_non_text_stdout_capture"
     ];
+    sma = [
+      # missing operating_status attribute in entity
+      "test_sensor_entities"
+    ];
     vesync = [
       # homeassistant.components.vesync:config_validation.py:863 The 'vesync' option has been removed, please remove it from your configuration
       "test_async_get_config_entry_diagnostics__single_humidifier"
@@ -128,6 +132,8 @@ in lib.listToAttrs (map (component: lib.nameValuePair component (
 
     meta = old.meta // {
       broken = lib.elem component [
+        # pinned version incompatible with urllib3>=2.0
+        "telegram_bot"
       ];
       # upstream only tests on Linux, so do we.
       platforms = lib.platforms.linux;