mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-pypa-installer.
* gnu/packages/python-build.scm (python-pypa-installer): New variable. Change-Id: Ida794a6dd9a4da62c842703139a95983580bd935
This commit is contained in:
parent
495a65cd9a
commit
c6d8655799
1 changed files with 24 additions and 0 deletions
|
@ -531,6 +531,30 @@ any dependency management. It aims to keep dependencies to a minimum, in
|
||||||
order to make bootstrapping easier.")
|
order to make bootstrapping easier.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
;; There are quite a few amount of Python installers in the wild we need the
|
||||||
|
;; one from PyPa team.
|
||||||
|
(define-public python-pypa-installer
|
||||||
|
(package
|
||||||
|
(name "python-pypa-installer")
|
||||||
|
(version "0.7.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "installer" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0cdnqh3a3amw8k4s1pzfjh0hpvzw4pczgl702s1b16r82qqkwvd2"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f)) ; Depends on pytest, which we cannot import into this module.
|
||||||
|
(native-inputs
|
||||||
|
(list python-flit-core))
|
||||||
|
(home-page "https://installer.readthedocs.io/")
|
||||||
|
(synopsis "low-level library for installing from a Python wheel distribution")
|
||||||
|
(description
|
||||||
|
"This package provides a library for installing Python wheels.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-poetry-core-1.0
|
(define-public python-poetry-core-1.0
|
||||||
(package
|
(package
|
||||||
(name "python-poetry-core")
|
(name "python-poetry-core")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue