gnu: python-cson: Switch to pyproject.

* gnu/packages/python-xyz.scm (python-cson):
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, python-wheel.
[description]: Improve style.

Change-Id: I12bc53a9a41b14c23c1f465a8e93bd8d79b899bd
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-08-14 00:08:22 +02:00 committed by Sharlatan Hellseher
parent ec1bade27d
commit 470cd20e3a
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -32316,17 +32316,20 @@ memoization.")
(version "0.8")
(source
(origin
(method url-fetch)
(uri (pypi-uri "cson" version))
(method git-fetch)
(uri (git-reference
(url "https://github.com/avakar/pycson")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "00cyvigg4npbph39ghkg77xbxisa6plf75vii24igxfizik0337f"))))
(build-system python-build-system)
(propagated-inputs
(list python-speg))
(base32 "0d2zbmak0hzsl1w71dgc8x4q4vdfbpk46vwyi9vvvqv7gdqj59fn"))))
(build-system pyproject-build-system)
(native-inputs (list python-pytest python-setuptools python-wheel))
(propagated-inputs (list python-speg))
(home-page "https://github.com/avakar/pycson")
(synopsis "Parser for Coffeescript Object Notation (CSON)")
(description "This package is a parser for Coffeescript Object
Notation (CSON).")
(description
"This package is a parser for Coffeescript Object Notation (CSON).")
(license license:expat)))
(define-public python-aionotify