diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-01 11:14:30 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:22 +0100 |
| commit | aa8d1bb55ecc2fded97b45618d6f1148262997f0 (patch) | |
| tree | c3ce4cf743f122d8a2759f4f9db1d238b2a8bc66 /gnu/packages/python-xyz.scm | |
| parent | 4bd6db2080267dc4dbf254db09be3c1216b6fafc (diff) | |
gnu: python-pretend: Move to python-build and adapt native-inputs.
* gnu/packages/python-xyz.scm (python-pretend): Move from here…
* gnu/packages/python-build.scm (python-pretend): …to here.
[native-inputs]: Remove python-pytest,
and python-setuptools; add python-packaging-bootstrap,
python-pytest-bootstrap, and python-setuptools-bootstrap.
Related-to: guix/guix#5813
Change-Id: I75a27534d71f456fdb76841f1d3597a81976c7e6
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c54e5c09b73..ca621924ea5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17966,32 +17966,6 @@ invoked on those path objects directly.") (define-deprecated/public-alias python-path-bootstrap python-path) (define-deprecated/public-alias python-pathpy python-path) -(define-public python-pretend - (package - (name "python-pretend") - (version "1.0.9") - (source - (origin - (method git-fetch) ;no tests in PyPI archive - (uri (git-reference - (url "https://github.com/alex/pretend") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "156l685r9mg7i4xyrk9ql3sxk088irxlg8x7md5i0d05hdw1z8rs")))) - (build-system pyproject-build-system) - (native-inputs - (list python-pytest - python-setuptools)) - (home-page "https://github.com/alex/pretend") - (synopsis "Library for stubbing in Python") - (description - "Pretend is a library to make stubbing with Python easier. Stubbing is a -technique for writing tests. You may hear the term mixed up with mocks,fakes, -or doubles. Basically, a stub is an object that returns pre-canned responses, -rather than doing any computation.") - (license license:bsd-3))) - (define-public python-pip-run (package (name "python-pip-run") |
