gnu: python-sexpdata: Update to 1.0.2.

* gnu/packages/python-xyz.scm (python-sexpdata): Update to 1.0.2.
[build-system]: Use pyproject-build-system.
[arguments]: Add '#:tests? #f'.
[native-inputs]: Add python-setuptools, python-wheel.

Change-Id: Ia6efab4dc9a7029009e250bb3676dad70a91aedb
This commit is contained in:
Vinicius Monego 2025-07-27 10:24:24 -03:00
parent edd96a2b39
commit 0259abfb66
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -13576,15 +13576,18 @@ application and control it as if a human were typing commands.")
(define-public python-sexpdata
(package
(name "python-sexpdata")
(version "0.0.3")
(version "1.0.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "sexpdata" version))
(sha256
(base32
"1q4lsjyzzqrdv64l0pv4ij9nd8gqhvxqcrpxc2xpxs652sk2gj0s"))))
(build-system python-build-system)
"02f1v96wzqf3jgwbp1fvankszkzvyff53fa4ks7nyxpnc41ppdlj"))))
(build-system pyproject-build-system)
(arguments
(list #:tests? #f)) ; no tests
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/jd-boyd/sexpdata")
(synopsis "S-expression parser for Python")
(description