gnu: sugar-write-activity: Switch to pyproject.

* gnu/packages/sugar.scm (sugar-write-activity): Run guix style.
[build-system]: Switch to pyproject-build-system.
[arguments]: Replace <#:test-target> with <#:test-flags>.
<#:phases>: Run guix style.  Delete 'build phase.
[native-inputs]: Add python-setuptools-next.

Change-Id: Ic8a9b089de23000141a492a3baee36a5ab0bb4bb
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-09-06 19:54:19 +02:00 committed by Sharlatan Hellseher
parent ed95c695f7
commit 7eeeb2d8ce
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1436,19 +1436,20 @@ typist.")
(package
(name "sugar-write-activity")
(version (git-version "101" revision commit))
(source (origin
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/sugarlabs/write-activity")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"0lw34hf31fyfvqilzlmcz3c7zki0iqkn1zp2sv3dih016gwqg5pw"))))
(build-system python-build-system)
(base32 "0lw34hf31fyfvqilzlmcz3c7zki0iqkn1zp2sv3dih016gwqg5pw"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-target "check"
#:test-flags
#~(list "check")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'patch-launcher
@ -1456,12 +1457,15 @@ typist.")
(substitute* "activity/activity.info"
(("exec = sugar-activity3")
(string-append "exec = "
(search-input-file inputs "/bin/sugar-activity3"))))))
(search-input-file inputs
"/bin/sugar-activity3"))))))
(delete 'build)
(replace 'install
(lambda _
(setenv "HOME" "/tmp")
(invoke "python" "setup.py" "install"
(string-append "--prefix=" #$output)))))))
(native-inputs (list python-setuptools-next))
;; All these libraries are accessed via gobject introspection.
(propagated-inputs
(list abiword
@ -1469,12 +1473,11 @@ typist.")
gtk+
libgsf
telepathy-glib))
(inputs
(list sugar-toolkit-gtk3
gettext-minimal))
(inputs (list sugar-toolkit-gtk3 gettext-minimal))
(home-page "https://help.sugarlabs.org/write.html")
(synopsis "Word processor for Sugar desktop")
(description "Write is a word processor activity for the Sugar desktop.
Write embeds the AbiWord word processor, and can be used to write and edit
text documents.")
(description
"Write is a word processor activity for the Sugar desktop. Write embeds
the AbiWord word processor, and can be used to write and edit text
documents.")
(license license:gpl2+))))