File: no_pkg_resources.patch

package info (click to toggle)
python-hidapi 0.14.0.post4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,184 kB
  • sloc: ansic: 5,417; python: 263; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 456 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Prevent the automatic dependency on python3-pkg-resources.
Author: Alexandre Detiste <tchet@debian.org>
Forwarded: https://github.com/trezor/cython-hidapi/issues/187
Last-Update: 2025-01-15

--- a/setup.py
+++ b/setup.py
@@ -258,5 +258,5 @@
         "Programming Language :: Python :: 3.9",
     ],
     ext_modules=cythonize(modules, language_level=3),
-    install_requires=["setuptools>=19.0"],
+    setup_requires=["setuptools>=19.0"],
 )