summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-31 07:26:32 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:23 +0100
commit5e28584000a50abec4cc7f905172c8ca1129ac18 (patch)
tree27d6a3c09e257302e92cc68e491ede3cf4831603 /gnu/packages/python-build.scm
parentc75b9a5c9192b420ee9166c8f674ce8fb4d8262e (diff)
gnu: python-jaraco-classes: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-jaraco-classes): Move from here… * gnu/packages/python-build.scm (python-jaraco-classes): …to here. [native-inputs]: Replace python-pytest by python-pytest-bootstrap, python-setuptools by python-setuptools-bootstrap. Change-Id: Ib3dce8be7938bc81d8363888662a19e66b94d8f7 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index e1797d9356f..30033482190 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1433,6 +1433,31 @@ package from a wheel distribution. It provides basic functionality and
abstractions for handling wheels and installing packages from wheels.")
(license license:expat)))
+(define-public python-jaraco-classes
+ (package
+ (name "python-jaraco-classes")
+ (version "3.4.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.classes" version))
+ (sha256
+ (base32 "1k9s7wxhsy15730qab8bry7kpgl4yk3wch45ikfw0f823nsj9827"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list ; Do not test the myproject.toml build as it pulls dependencies.
+ #:test-flags '(list "-k" "not project")))
+ (native-inputs
+ (list python-pytest-bootstrap
+ python-setuptools-bootstrap))
+ (propagated-inputs
+ (list python-more-itertools))
+ (home-page "https://github.com/jaraco/jaraco.classes")
+ (synopsis "Utility functions for Python class constructs")
+ (description "This Python library contains utility functions for Python
+class constructs.")
+ (license license:expat)))
+
(define-public python-pdm-backend
(package
(name "python-pdm-backend")