File: add-psutil-dep.patch

package info (click to toggle)
input-remapper 2.1.1-1%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,860 kB
  • sloc: python: 27,277; sh: 191; xml: 33; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 704 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
commit 6a48487fc6fd23a96b975d4f7d42a945383f32ce
Author: Stephen Kitt <skitt@debian.org>
Date:   Mon Sep 1 13:33:07 2025 +0200

    Mention the psutil dependency in setup.py
    
    Signed-off-by: Stephen Kitt <skitt@debian.org>

diff --git a/setup.py b/setup.py
index a36cdf1..4002717 100644
--- a/setup.py
+++ b/setup.py
@@ -129,7 +129,7 @@ setup(
         ("/usr/bin/", ["bin/input-remapper-control"]),
         ("/usr/bin/", ["bin/input-remapper-reader-service"]),
     ],
-    install_requires=["setuptools", "evdev", "pydbus", "pygobject", "pydantic"],
+    install_requires=["setuptools", "evdev", "psutil", "pydbus", "pygobject", "pydantic"],
     cmdclass={
         "install": Install,
     },