diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:16:55 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:19:08 +0000 |
commit | 52b8a60b38f4c28071656f4ea42585b6fe4a6608 (patch) | |
tree | 1c6b681c9ad057163c478c0f5e34aaa8c41f7d4d | |
parent | e6f2c682872dfdbe9c1bfa0479ef45f5f187ccd7 (diff) | |
download | guix-52b8a60b38f4c28071656f4ea42585b6fe4a6608.tar.gz guix-52b8a60b38f4c28071656f4ea42585b6fe4a6608.zip |
gnu: Remove python-poetry-core-1.0.
* gnu/packages/python-build.scm (python-poetry-core-1.0): Delete variable.
Change-Id: I02e57215a54ec6d080bb3a844b7bc519ffa09af8
-rw-r--r-- | gnu/packages/python-build.scm | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 89352d9026..80f75a188e 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -555,26 +555,6 @@ order to make bootstrapping easier.") "This package provides a library for installing Python wheels.") (license license:expat))) -(define-public python-poetry-core-1.0 - (package - (name "python-poetry-core") - (version "1.0.7") - (source - (origin - (method url-fetch) - (uri (pypi-uri "poetry-core" version)) - (sha256 - (base32 "01n2rbsvks7snrq3m1d08r3xz9q2715ajb62fdb6rvqnb9sirhcq")))) - (build-system python-build-system) - (home-page "https://github.com/python-poetry/poetry-core") - (synopsis "Poetry PEP 517 build back-end") - (description - "The @code{poetry-core} module provides a PEP 517 build back-end -implementation developed for Poetry. This project is intended to be -a light weight, fully compliant, self-contained package allowing PEP 517 -compatible build front-ends to build Poetry managed projects.") - (license license:expat))) - (define-public python-poetry-core (package (name "python-poetry-core") |