gnu: python-jsonalias: Update to 0.1.2.

* gnu/packages/python-xyz.scm (python-jsonalias): Update to 0.1.2.
[build-system]: Use pyproject.
[native-inputs]: Add python-poetry-core.

Change-Id: I9f0e7653f6604debc7879f0089267661ab28d316
This commit is contained in:
Sharlatan Hellseher 2025-07-01 13:56:07 +01:00
parent 7f620c948e
commit 98d48a6da9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -5767,15 +5767,18 @@ files.")
(define-public python-jsonalias
(package
(name "python-jsonalias")
(version "0.1.1")
(version "0.1.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "jsonalias" version))
(sha256
(base32
"0sd7c3vyvfhhpnan77ax4f0x1whjcb5iz7jhjky7kmcpaf9lvw34"))))
(build-system python-build-system)
(arguments (list #:tests? #f)) ; There are no tests.
"0k5c2132hbd9wxnj8w05vvpi286l3g3ksw350m85rd0k9958g5z3"))))
(build-system pyproject-build-system)
(arguments
(list #:tests? #f)) ; no tests in PyPI or Git
(native-inputs
(list python-poetry-core))
(home-page "https://github.com/kevinheavey/jsonalias/")
(synopsis "JSON type alias for Python")
(description