From c508d37693cb22282ae515a2abe560728f3ccddc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Vask=C3=B3?= Date: Tue, 23 Feb 2021 17:58:09 +0100 Subject: [PATCH] nix: defer to the version of cryptography available in the store NixOS 20.09 doesn't have the necessarry toolchain to build newer versions. --- nix/openconnect-sso.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/openconnect-sso.nix b/nix/openconnect-sso.nix index 3d07f36..8ec16b7 100644 --- a/nix/openconnect-sso.nix +++ b/nix/openconnect-sso.nix @@ -24,7 +24,7 @@ poetry2nix.mkPoetryApplication { poetry2nix.defaultPoetryOverrides ( self: super: { - inherit (python3Packages) pyqt5 pyqtwebengine; + inherit (python3Packages) cryptography pyqt5 pyqtwebengine; coverage_enable_subprocess = with python3.pkgs; buildPythonPackage rec { pname = "coverage_enable_subprocess"; version = "1.0";