diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-08-12 19:16:49 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-13 12:46:43 +0100 |
| commit | aed2216bb84c2e42278d87c563b418e0bb253b3a (patch) | |
| tree | 64f69d14feba340f6a2932596e8733b1a73f9ad5 | |
| parent | 56bc9203318d9759817c2011c45371c1d639b53a (diff) | |
gnu: python-pyannotate: Switch to pyproject.
* gnu/packages/python-check.scm (python-pyannotate):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: I75589fa5aaa87f61ad3bfffeb723a7c05165e995
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/python-check.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index b98e9dfa09..d5772b7716 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1608,13 +1608,13 @@ flake8 to check PEP-8 naming conventions.") (method url-fetch) (uri (pypi-uri "pyannotate" version)) (sha256 - (base32 - "16bm0mf7wxvy0lgmcs1p8n1ji8pnvj1jvj8zk3am70dkp825iv84")))) - (build-system python-build-system) + (base32 "16bm0mf7wxvy0lgmcs1p8n1ji8pnvj1jvj8zk3am70dkp825iv84")))) + (build-system pyproject-build-system) + (native-inputs + (list python-setuptools python-wheel)) (propagated-inputs (list python-mypy-extensions python-six)) - (home-page - "https://github.com/dropbox/pyannotate") + (home-page "https://github.com/dropbox/pyannotate") (synopsis "Auto-generate PEP-484 annotations") (description "This package, PyAnnotate, is used to auto-generate PEP-484 annotations.") |
