From e26a2367f67b524079085ff40e0597cda91eb75b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 15 Sep 2022 04:23:44 +0200 Subject: [PATCH] python3Packages.hass-nabucasa: relax cryptography constraint further --- pkgs/development/python-modules/hass-nabucasa/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/hass-nabucasa/default.nix b/pkgs/development/python-modules/hass-nabucasa/default.nix index ce2f12804bd8..e23aa5b9fa7c 100644 --- a/pkgs/development/python-modules/hass-nabucasa/default.nix +++ b/pkgs/development/python-modules/hass-nabucasa/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { postPatch = '' substituteInPlace setup.py \ --replace "acme==" "acme>=" \ - --replace "cryptography>=2.8,<37.0" "cryptography" \ + --replace "cryptography>=2.8,<38.0" "cryptography" \ --replace "pycognito==" "pycognito>=" \ --replace "snitun==" "snitun>=" \ '';