mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 01:34:31 +04:00
python-cryptography: fix build by disabling setup requirements
python-cryptography tries to install other packages during setup. However, this isn't needed, since they should have been already resolved/installed via LEDE/OpenWrt's build system dep logic. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
committed by
Alexandru Ardelean
parent
4bceecac96
commit
274cacf365
@@ -0,0 +1,12 @@
|
||||
diff --git a/setup.py b/setup.py
|
||||
index b5c05df..a777dd7 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -266,6 +266,7 @@ class DummyPyTest(test):
|
||||
with open(os.path.join(base_dir, "README.rst")) as f:
|
||||
long_description = f.read()
|
||||
|
||||
+setup_requirements=[]
|
||||
|
||||
setup(
|
||||
name=about["__title__"],
|
||||
Reference in New Issue
Block a user