diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:47 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:18 +0100 |
commit | 652a3a6796a125e438b64314ec6d875de7604e45 (patch) | |
tree | cfd46b768d92e9c0ae27294913d68960e24ba04a /gnu/packages/python-xyz.scm | |
parent | be14b4ddd2d283c4753d3cab1a192318b26bff48 (diff) |
gnu: python-docspec-python: Move to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-docspec-python):
[build-system]: Move to pyproject-build-system.
[arguments]<#:phases>: Remove uneeded field.
Change-Id: Ib728c442a130eecebe4dff1e364d997bcca76076
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d1232fa6e7..231cb079b4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -873,16 +873,8 @@ documentation of programming languages.") (base32 "0n8m52vxmlvkj7p5jmd4rfdks65rrp4q4vzak44y6kbg9l5qa6y4")))) (build-system pyproject-build-system) (arguments - (list - #:tests? #false ;there are none - #:phases - '(modify-phases %standard-phases - (add-after 'unpack 'relax-requirements - (lambda _ - ;; We don't have black 23. - (substitute* "pyproject.toml" - (("23.1.0") "22.3.0"))))))) - (propagated-inputs (list python-black python-docspec python-nr-util)) + (list #:tests? #false)) ;there are none + (propagated-inputs (list python-docspec python-nr-util)) (native-inputs (list python-poetry-core)) (home-page "https://github.com/NiklasRosenstein/docspec/") (synopsis "Produce docspec data from Python source code") |