From 92de9d11c349da205b265132882d8b84f54c63ad Mon Sep 17 00:00:00 2001 From: Akinwale Ariwodola Date: Fri, 20 Aug 2021 15:40:17 +0100 Subject: [PATCH] remove unused dependencies from cryptography recipe --- recipes/cryptography/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/cryptography/__init__.py b/recipes/cryptography/__init__.py index fd38799..1aa84f6 100644 --- a/recipes/cryptography/__init__.py +++ b/recipes/cryptography/__init__.py @@ -6,7 +6,7 @@ class CryptographyRecipe(CompiledComponentsPythonRecipe): name = 'cryptography' version = '3.1.1' url = 'https://github.com/pyca/cryptography/archive/{version}.tar.gz' - depends = [('python2', 'python3crystax'), 'openssl', 'idna', 'pyasn1', 'six', 'setuptools', 'ipaddress', 'cffi'] + depends = [('python2', 'python3crystax'), 'openssl', 'six', 'setuptools', 'cffi'] call_hostpython_via_targetpython = False patches = ['libpthread.patch']