diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-31 07:55:38 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:23 +0100 |
| commit | fc513cc7e614ed062c684b09806982747dd60434 (patch) | |
| tree | 9f78723d76702a3456f430e959bf0ae7266e8771 /gnu/packages/python-build.scm | |
| parent | bcb84fa89c929e2289d1cd0d9b1752a6c0fb73e8 (diff) | |
gnu: python-jaraco-path: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-jaraco-path): Move from here…
* gnu/packages/python-build.scm (python-jaraco-path): …to here.
[native-inputs]: Replace python-pytest by python-pytest-bootstrap,
python-setuptools by python-setuptools-bootstrap,
python-setuptools-scm by python-setuptools-scm-boostrap.
Change-Id: I1180653d8834d9161be77c3f6b36a3b7a8884f20
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
| -rw-r--r-- | gnu/packages/python-build.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 58a427c9e63..aae993b9211 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm | |||
| @@ -1570,6 +1570,37 @@ WeightedLookup: A specialized RangeMap for selecting an item by weights. | |||
| 1570 | module with a few extra procedures.") | 1570 | module with a few extra procedures.") |
| 1571 | (license license:expat))) | 1571 | (license license:expat))) |
| 1572 | 1572 | ||
| 1573 | (define-public python-jaraco-path | ||
| 1574 | (package | ||
| 1575 | (name "python-jaraco-path") | ||
| 1576 | (version "3.7.2") | ||
| 1577 | (source | ||
| 1578 | (origin | ||
| 1579 | (method git-fetch) | ||
| 1580 | (uri (git-reference | ||
| 1581 | (url "https://github.com/jaraco/jaraco.path") | ||
| 1582 | (commit (string-append "v" version)))) | ||
| 1583 | (file-name (git-file-name name version)) | ||
| 1584 | (sha256 | ||
| 1585 | (base32 "12bj9za1yp0yn0ppya6a4kwgmh7hvmw64x7ivp4y0sbv20r0vfdq")))) | ||
| 1586 | (build-system pyproject-build-system) | ||
| 1587 | (arguments | ||
| 1588 | (list | ||
| 1589 | #:phases | ||
| 1590 | #~(modify-phases %standard-phases | ||
| 1591 | (add-after 'unpack 'set-version | ||
| 1592 | (lambda _ | ||
| 1593 | (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))))) | ||
| 1594 | (native-inputs | ||
| 1595 | (list python-pytest-bootstrap | ||
| 1596 | python-setuptools-bootstrap | ||
| 1597 | python-setuptools-scm-bootstrap)) | ||
| 1598 | (home-page "https://github.com/jaraco/jaraco.path") | ||
| 1599 | (synopsis "Miscellaneous path functions") | ||
| 1600 | (description | ||
| 1601 | "This package provides miscellaneous path functions for Python.") | ||
| 1602 | (license license:expat))) | ||
| 1603 | |||
| 1573 | (define-public python-jaraco-text | 1604 | (define-public python-jaraco-text |
| 1574 | (package | 1605 | (package |
| 1575 | (name "python-jaraco-text") | 1606 | (name "python-jaraco-text") |
