diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-03-22 22:13:17 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-28 22:00:01 +0000 |
| commit | 3050f813011533ff7f8ed364bf9093110ec568f5 (patch) | |
| tree | ce042cf7cbe2bc665a5d33a3ab4fd53917b6e5ff /gnu/packages/python-build.scm | |
| parent | c5075bc31d7f953e9e1fcecf1e13c6bdff096d74 (diff) | |
gnu: python-pypa-installer: Deprecate aliased python-installer.
* gnu/packages/python-build.scm (python-pypa-installer): Drop
variable, and redefine it as a deprecated version of python-installer.
Change-Id: I97467c9832eb7e23ffe67aea90fbf017864f312b
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
| -rw-r--r-- | gnu/packages/python-build.scm | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index a475fd0f8ee..1040a25981b 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -1067,30 +1067,6 @@ any dependency management. It aims to keep dependencies to a minimum, in order to make bootstrapping easier.") (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 (package (name "python-poetry-core") @@ -1526,6 +1502,10 @@ package from a wheel distribution. It provides basic functionality and abstractions for handling wheels and installing packages from wheels.") (license license:expat))) +;; Both packages have been merged into a single one. +(define-deprecated-package python-pypa-installer + python-installer) + (define-public python-jaraco-classes (package (name "python-jaraco-classes") |
