lol

python3Packages.hass-nabucasa: relax cryptography constraint

+7 -6
+7 -6
pkgs/development/python-modules/hass-nabucasa/default.nix
··· 24 24 sha256 = "sha256-0E8eiHzqbxHbtAd97MbvFMRDWTu25E9x/44oNGC4mUM="; 25 25 }; 26 26 27 + postPatch = '' 28 + sed -i 's/"acme.*"/"acme"/' setup.py 29 + substituteInPlace setup.py \ 30 + --replace "cryptography>=2.8,<4.0" "cryptography" \ 31 + --replace "snitun==" "snitun>=" 32 + ''; 33 + 27 34 propagatedBuildInputs = [ 28 35 acme 29 36 aiohttp ··· 39 46 pytest-aiohttp 40 47 pytestCheckHook 41 48 ]; 42 - 43 - postPatch = '' 44 - sed -i 's/"acme.*"/"acme"/' setup.py 45 - substituteInPlace setup.py \ 46 - --replace "snitun==" "snitun>=" 47 - ''; 48 49 49 50 pythonImportsCheck = [ "hass_nabucasa" ]; 50 51