summaryrefslogtreecommitdiff
path: root/gnu
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
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')
-rw-r--r--gnu/packages/python-build.scm25
-rw-r--r--gnu/packages/python-xyz.scm25
2 files changed, 25 insertions, 25 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
1433abstractions for handling wheels and installing packages from wheels.") 1433abstractions for handling wheels and installing packages from wheels.")
1434 (license license:expat))) 1434 (license license:expat)))
1435 1435
1436(define-public python-jaraco-classes
1437 (package
1438 (name "python-jaraco-classes")
1439 (version "3.4.0")
1440 (source
1441 (origin
1442 (method url-fetch)
1443 (uri (pypi-uri "jaraco.classes" version))
1444 (sha256
1445 (base32 "1k9s7wxhsy15730qab8bry7kpgl4yk3wch45ikfw0f823nsj9827"))))
1446 (build-system pyproject-build-system)
1447 (arguments
1448 (list ; Do not test the myproject.toml build as it pulls dependencies.
1449 #:test-flags '(list "-k" "not project")))
1450 (native-inputs
1451 (list python-pytest-bootstrap
1452 python-setuptools-bootstrap))
1453 (propagated-inputs
1454 (list python-more-itertools))
1455 (home-page "https://github.com/jaraco/jaraco.classes")
1456 (synopsis "Utility functions for Python class constructs")
1457 (description "This Python library contains utility functions for Python
1458class constructs.")
1459 (license license:expat)))
1460
1436(define-public python-pdm-backend 1461(define-public python-pdm-backend
1437 (package 1462 (package
1438 (name "python-pdm-backend") 1463 (name "python-pdm-backend")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 495216d6975..882054d0d73 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14330,31 +14330,6 @@ finding unresolved symbols in Python code and their corresponding imports.")
14330enforced method signatures and consistent documentation.") 14330enforced method signatures and consistent documentation.")
14331 (license license:expat))) 14331 (license license:expat)))
14332 14332
14333(define-public python-jaraco-classes
14334 (package
14335 (name "python-jaraco-classes")
14336 (version "3.4.0")
14337 (source
14338 (origin
14339 (method url-fetch)
14340 (uri (pypi-uri "jaraco.classes" version))
14341 (sha256
14342 (base32 "1k9s7wxhsy15730qab8bry7kpgl4yk3wch45ikfw0f823nsj9827"))))
14343 (build-system pyproject-build-system)
14344 (arguments
14345 (list ; Do not test the myproject.toml build as it pulls dependencies.
14346 #:test-flags '(list "-k" "not project")))
14347 (native-inputs
14348 (list python-pytest
14349 python-setuptools))
14350 (propagated-inputs
14351 (list python-more-itertools))
14352 (home-page "https://github.com/jaraco/jaraco.classes")
14353 (synopsis "Utility functions for Python class constructs")
14354 (description "This Python library contains utility functions for Python
14355class constructs.")
14356 (license license:expat)))
14357
14358(define-public python-jaraco-collections 14333(define-public python-jaraco-collections
14359 (package 14334 (package
14360 (name "python-jaraco-collections") 14335 (name "python-jaraco-collections")