Unverified Commit d142f5ee authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

home-assistant: pin jellyfin-apiclient-python to version 1.10.0 (#396064)

parents 05cf7537 40bd63a4
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -151,6 +151,18 @@ let
        ];
      });

      # Pinned due to home-assistant still needing 1.10.0 verison
      # Remove this when home-assistant upates the jellyfin-apiclient-python version
      jellyfin-apiclient-python = super.jellyfin-apiclient-python.overridePythonAttrs (oldAttrs: rec {
        version = "1.10.0";
        src = fetchFromGitHub {
          owner = "jellyfin";
          repo = "jellyfin-apiclient-python";
          tag = "v${version}";
          hash = "sha256-H1FqypNuVIZ17cFdNDEmmKICswxJkUGq2LhlingbCVk=";
        };
      });

      # acme and thus hass-nabucasa doesn't support josepy v2
      # https://github.com/certbot/certbot/issues/10185
      josepy = super.josepy.overridePythonAttrs (old: rec {