From 65b6f748dbc9433c6f8d5eb7895d95f49118da98 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Thu, 16 Oct 2025 00:29:05 +0200 Subject: [PATCH] gnu: python-grako: Switch to pyproject. * gnu/packages/python-xyz.scm (python-grako): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Remove python-pytest-runner. [home-page]: Update it, the previous link doesn't exist anymore. Change-Id: I9a6efe82914abd648222c851cdc8531be7d73fa3 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b9cc43b059d6c491541d541cc79c5e6159140a85..2bf6692c8d89de591cdd98c666fbae3bcb8d6957 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13575,11 +13575,11 @@ Python language binding specification.") (substitute* '("grako/util.py" "grako/walkers.py") (("collections\\.Mapping") "collections.abc.Mapping")))))) - (build-system python-build-system) - (arguments '(#:tests? #f)) ; Test file 'grako.ebnf' is missing from archive. - (native-inputs - (list unzip python-pytest python-pytest-runner)) - (home-page "https://bitbucket.org/neogeny/grako") + (build-system pyproject-build-system) + ;; XXX: Test file 'grako.ebnf' is missing from archive. + (arguments (list #:tests? #f)) + (native-inputs (list unzip python-pytest python-setuptools)) + (home-page "https://pypi.org/project/grako") (synopsis "EBNF parser generator") (description "Grako takes a grammar in a variation of EBNF as input, and outputs a