diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-01 13:56:07 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-02 23:16:28 +0100 |
commit | 98d48a6da93677c91e5df2dc4bea317132886749 (patch) | |
tree | b0f33cefbbf9ed6613115f1a4a7e837640f95593 | |
parent | 7f620c948ee2d873ef79ff51bd89cb8d0ca00f15 (diff) |
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
-rw-r--r-- | gnu/packages/python-xyz.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5a02b6e619..9709a905ba 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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 |