gnu: packages/code: Select only pypi-uri from python build-system.

python-build-system is no longer in use in this module but
pyproject-build-system misses PYPI-URI symbol yet, this change load
just it.

* gnu/packages/code.scm: Load just PYPI-URI from python-build-system.

Change-Id: I545055e92ddf79012bc3baa2ed89b37341c0d10e
This commit is contained in:
Sharlatan Hellseher 2025-07-27 10:09:55 +01:00
parent 780f7fb4aa
commit 6a4bbde908
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -42,15 +42,15 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages code)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system gnu)
#:use-module (guix build-system cmake)
#:use-module (guix build-system python)
#:use-module ((guix build-system python) #:select (pypi-uri))
#:use-module (guix build-system pyproject)
#:use-module (guix build-system trivial)
#:use-module (guix build-system go)