summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-22 10:44:21 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:24 +0100
commit85a45ad58f7b48617b7fda50614779a8f2703710 (patch)
tree3bf5a52c8f202a1d24edfede1ec5fb7c720ccf19 /gnu/packages
parent582ca1dca38dd56bd8542bfd0bcefd80ad926476 (diff)
gnu: Remove python-pep517.
* gnu/packages/python-xyz.scm (python-pep517, python-pep517-bootstrap): Delete variables. Relates-to: guix/guix#5813 Fixes: guix/guix#5726 Change-Id: Ia0c25319dd59f6f484611159580a844fd6e96d30
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-build.scm27
-rw-r--r--gnu/packages/python-xyz.scm14
2 files changed, 0 insertions, 41 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 12d8f1d2890..73435623c70 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -841,33 +841,6 @@ installed with a newer @code{pip} or with wheel's own command line utility.")
841 (sha256 841 (sha256
842 (base32 "0ww8fgkvwv35ypj4cnngczdwp6agr4qifvk2inb32azfzbrrc4fd")))))) 842 (base32 "0ww8fgkvwv35ypj4cnngczdwp6agr4qifvk2inb32azfzbrrc4fd"))))))
843 843
844;;; TODO: Deprecate with https://github.com/pypa/pyproject-hooks.
845;;;
846;;; From PyPI web page: The core of this package has been renamed to
847;;; pyproject-hooks (https://pyproject-hooks.readthedocs.io). Please use that
848;;; package or build (https://pypa-build.readthedocs.io/en/stable/) in place
849;;; of pep517.
850(define-public python-pep517-bootstrap
851 (hidden-package
852 (package
853 (name "python-pep517-bootstrap")
854 (version "0.13.1")
855 (source
856 (origin
857 (method url-fetch)
858 (uri (pypi-uri "pep517" version))
859 (sha256
860 (base32 "05xk0x7b5n7zmcqrznm4lnbakgdjpin19mp5zyzb92wksgzs4bqv"))))
861 (build-system pyproject-build-system)
862 (arguments
863 `(#:tests? #f)) ;to avoid circular dependencies
864 (native-inputs (list python-flit-core))
865 (home-page "https://github.com/pypa/pep517")
866 (synopsis "Wrappers to build Python packages using PEP 517 hooks")
867 (description
868 "Wrappers to build Python packages using PEP 517 hooks.")
869 (license license:expat))))
870
871(define-public python-pyparsing 844(define-public python-pyparsing
872 (package 845 (package
873 (name "python-pyparsing") 846 (name "python-pyparsing")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e6fbf639358..7c1370dd055 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15905,20 +15905,6 @@ application monitoring and error tracking software.")
15905versions number match PEP 440.") 15905versions number match PEP 440.")
15906 (license license:expat))) 15906 (license license:expat)))
15907 15907
15908(define-public python-pep517
15909 (package
15910 (inherit python-pep517-bootstrap)
15911 (name "python-pep517")
15912 (arguments
15913 '(#:phases (modify-phases %standard-phases
15914 (replace 'check
15915 (lambda* (#:key tests? #:allow-other-keys)
15916 (delete-file "pytest.ini")
15917 (delete-file "tests/test_meta.py")
15918 (if tests?
15919 (invoke "pytest") #t))))))
15920 (native-inputs (list python-mock python-pytest python-testpath))))
15921
15922(define-public python-pyproject-metadata 15908(define-public python-pyproject-metadata
15923 (package 15909 (package
15924 (name "python-pyproject-metadata") 15910 (name "python-pyproject-metadata")