summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-25 11:31:41 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:22:56 +0100
commita906bfacc3cbd70774e3d1218ead23b4dd54a5c9 (patch)
treee8ed4923c74a29263d019e8ca7dad5c0be283cc1 /gnu/packages/python-xyz.scm
parent7622a9909e5b5dc4ccbf6d2b6259ed5be366e965 (diff)
gnu: python-notify2: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-notify2): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I6684841f7f1a89ad539ad2c8fe1eca17c9193378 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a1a0443c841..f0b6a2e6ace 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15363,10 +15363,10 @@ implementation of D-Bus.")
(sha256
(base32
"0z8rrv9rsg1r2qgh2dxj3dfj5xnki98kgi3w839kqby4a26i1yik"))))
- (build-system python-build-system)
- (arguments `(#:tests? #f)) ; tests depend on system state
- (propagated-inputs
- (list python-dbus))
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ; tests depend on system state
+ (native-inputs (list python-setuptools))
+ (propagated-inputs (list python-dbus))
(home-page "https://bitbucket.org/takluyver/pynotify2")
(synopsis "Python interface to D-Bus notifications")
(description