diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-23 10:28:38 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:57 +0100 |
| commit | 1917bb8a07b00c4d5ab2d9914e0a2957ecb052e5 (patch) | |
| tree | ab5a4120bf2e72368f1e0d009800f5fc38f2b7fc /gnu | |
| parent | 569d3f86d19891ccdd30ea65396a53ccc4838bb2 (diff) | |
gnu: onionshare-cli: Don't check wheel in sanity check.
python-wheel is less likely required during runtime at all, adjust
relaxation and remove it from native inputs completely.
* gnu/packages/tor.scm (onionshare-cli)[phases]{relax-requirements}:
Remove check for wheel package
[native-inputs]: Remove python-wheel; add python-setuptools.
Change-Id: Ifa6af72d70af364f744e93f84820d00bff6fd267
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/tor.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index f41cd8d3d7c..e33e37971fa 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -281,7 +281,7 @@ networks.") (list python-cython-3 python-poetry-core python-pytest - python-wheel)) + python-setuptools)) (inputs (list python-click python-cffi @@ -323,7 +323,7 @@ networks.") (("70.0.0") "67.6.1") ; setuptools = ">=70.0.0" (("1.8.1") "^1.8.1") ; stem = "1.8.1" (("3.0.6") "^3.0.6") ; werkzeug = "3.0.6" - (("0.41.2") "0.40.0")))) ; wheel = "^0.41.2" + ((".*0.41.2.*") "")))) ; wheel = "^0.41.2" (add-after 'unpack 'bake-tor (lambda* (#:key inputs #:allow-other-keys) (substitute* (list "cli/onionshare_cli/common.py" |
