From 9b51200c21e1c2a615351dc849427df3161ad2e1 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Sat, 28 Mar 2020 20:47:08 +0100 Subject: [PATCH] Add override for configparser --- overrides.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/overrides.nix b/overrides.nix index 8301dcd..a700f81 100644 --- a/overrides.nix +++ b/overrides.nix @@ -46,6 +46,14 @@ self: super: } ); + configparser = super.configparser.overridePythonAttrs ( + old: { + buildInputs = old.buildInputs ++ [ + self.toml + ]; + } + ); + cryptography = super.cryptography.overridePythonAttrs ( old: { buildInputs = old.buildInputs ++ [ pkgs.openssl ];