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. module with a few extra procedures.") (license license:expat))) +(define-public python-jaraco-path + (package + (name "python-jaraco-path") + (version "3.7.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jaraco/jaraco.path") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "12bj9za1yp0yn0ppya6a4kwgmh7hvmw64x7ivp4y0sbv20r0vfdq")))) + (build-system pyproject-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'set-version + (lambda _ + (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))))) + (native-inputs + (list python-pytest-bootstrap + python-setuptools-bootstrap + python-setuptools-scm-bootstrap)) + (home-page "https://github.com/jaraco/jaraco.path") + (synopsis "Miscellaneous path functions") + (description + "This package provides miscellaneous path functions for Python.") + (license license:expat))) + (define-public python-jaraco-text (package (name "python-jaraco-text") |
