mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: python-poetry-core: Update to 1.5.2.
* gnu/packages/python-build.scm (python-poetry-core): Update to 1.5.2. [source]: Adjust URL. [build-system]: Use pyproject-build-system. [arguments]: New field.
This commit is contained in:
parent
51b1a70b71
commit
21d6985a8b
1 changed files with 12 additions and 4 deletions
|
@ -454,14 +454,22 @@ (define-public python-pypa-build
|
||||||
(define-public python-poetry-core
|
(define-public python-poetry-core
|
||||||
(package
|
(package
|
||||||
(name "python-poetry-core")
|
(name "python-poetry-core")
|
||||||
(version "1.0.7")
|
(version "1.5.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "poetry-core" version))
|
(uri (pypi-uri "poetry_core" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "01n2rbsvks7snrq3m1d08r3xz9q2715ajb62fdb6rvqnb9sirhcq"))))
|
(base32 "053c8dw632p7jkhjb51k0wcx6hdw4r3lk97mds76df653qxnqmf6"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ;disabled to avoid extra dependencies
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'build 'add-self-to-path
|
||||||
|
(lambda _
|
||||||
|
;; The build system requires itself.
|
||||||
|
(setenv "PYTHONPATH" "src"))))))
|
||||||
(home-page "https://github.com/python-poetry/poetry-core")
|
(home-page "https://github.com/python-poetry/poetry-core")
|
||||||
(synopsis "Poetry PEP 517 build back-end")
|
(synopsis "Poetry PEP 517 build back-end")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue