From 4a9ddc55152a37c0c41c6d46be813bfa59abb856 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 27 Feb 2023 00:31:39 +0100 Subject: [PATCH] Revert "python3.pkgs.cryptography: use openssl_1_1" This reverts commit 8b1f16573cc6fa50facc3fe3154ba437e64a9220. Cryptography was pinned to openssl_1_1 to prevent further breakage among its consumers. Most notably that was pyopenssl, which has improved quite a bit since then and should not cause problems any longer. It is therefore time to give this another shot, given that we cannot in good conscience make such widespread use of openssl 1.1 a reality in the upcoming NixOS 23.05 release. --- pkgs/top-level/python-packages.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f35fbd1013f0..c9123459359c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2113,7 +2113,6 @@ self: super: with self; { cryptography = callPackage ../development/python-modules/cryptography { inherit (pkgs.darwin) libiconv; inherit (pkgs.darwin.apple_sdk.frameworks) Security; - openssl = pkgs.openssl_1_1; }; cryptolyzer = callPackage ../development/python-modules/cryptolyzer { };