aboutsummaryrefslogtreecommitdiff
path: root/lang/python/python-cryptography/patches/0004-disable-rust.patch
blob: 81c45a44df6eef26d9b7afb0a40e4add5cbd240f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ import sys
 from setuptools import find_packages, setup
 
 try:
-    from setuptools_rust import RustExtension
+    pass
 except ImportError:
     print(
         """
@@ -43,9 +43,9 @@ with open(os.path.join(src_dir, "cryptog
 # `pyproject.toml`
 setuptools_rust = "setuptools-rust>=0.11.4"
 install_requirements = ["cffi>=1.12"]
-setup_requirements = install_requirements + [setuptools_rust]
+setup_requirements = install_requirements
 
-if os.environ.get("CRYPTOGRAPHY_DONT_BUILD_RUST"):
+if True:
     rust_extensions = []
 else:
     rust_extensions = [