From 2c7290a1891be6c52b8a2c168b0ca185a2eab100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 23 Mar 2022 06:44:54 +0100 Subject: [PATCH] python39Packages.cryptography: remove depedencies which have no mentions in code --- pkgs/development/python-modules/cryptography/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/cryptography/default.nix b/pkgs/development/python-modules/cryptography/default.nix index 197d66daa0ba..543c7cb73426 100644 --- a/pkgs/development/python-modules/cryptography/default.nix +++ b/pkgs/development/python-modules/cryptography/default.nix @@ -49,10 +49,7 @@ buildPythonPackage rec { buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security libiconv ]; - propagatedBuildInputs = [ - packaging - six - ] ++ lib.optionals (!isPyPy) [ + propagatedBuildInputs = lib.optionals (!isPyPy) [ cffi ];