summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-06 16:48:56 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-06 22:08:08 +0100
commite26a5f5900b2aa86383590ba1c6cb494195e1638 (patch)
tree12fa9bf1c1127eba94f01a037529bc82f4a6652e /gnu/packages/python-xyz.scm
parentf27d2aea8ed89066b74ffcd86b91f3f3ecab136f (diff)
gnu: i3-autotiling: Switch to pyproject.
* gnu/packages/python-xyz.scm (i3-autotiling): [source]: Run guix style. [build-system]: Switch to pyproject-build-system. [native-inputs]: Replace python-wheel with python-setuptools-next. Change-Id: Id59fcca76a4d8c2453a136d321165e5976314921 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm22
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 64bc926e9c..dbd986d175 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -39563,18 +39563,18 @@ window managers.")
(package
(name "i3-autotiling")
(version "1.9.3")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/nwg-piotr/autotiling")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0ag3zz4r3cwpj769m2aw3l8yj93phsydzfz02dig5z81cc025rck"))))
- (build-system python-build-system)
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nwg-piotr/autotiling")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0ag3zz4r3cwpj769m2aw3l8yj93phsydzfz02dig5z81cc025rck"))))
+ (build-system pyproject-build-system)
(arguments (list #:tests? #f)) ;no tests
- (native-inputs (list python-wheel))
+ (native-inputs (list python-setuptools-next))
(propagated-inputs (list python-i3ipc))
(home-page "https://github.com/nwg-piotr/autotiling")
(synopsis "Automatically tile windows in i3 and Sway")