diff options
author | Vinicius Monego <monego@posteo.net> | 2025-07-30 19:27:48 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-08-02 09:15:50 -0300 |
commit | 32e01b4f8362d4ffc6af6b4ad061a48d57d11bcf (patch) | |
tree | 214c04521d4ce36e1ec8073990b1439f7a257580 | |
parent | c23d29f9b8112e886e693571ac08db49567260b6 (diff) |
gnu: python-pystitcher: Use pyproject-build-system.
* gnu/packages/python-xyz.scm (python-pystitcher)[build-system]: Use
pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, python-wheel.
Change-Id: Ifb3ee3759ef4e749d09358ea01390a730102af2a
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 91912e35e4..9b9abeeea5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8043,7 +8043,8 @@ logic-free templating system Mustache.") (file-name (git-file-name name version)) (sha256 (base32 "03yrzqhcsjdj5zprrk3bh5bbyqfy3vfhxra9974vmkir3m121394")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools python-wheel)) (inputs (list python-html5lib python-importlib-metadata python-markdown |