diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-23 23:13:18 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-27 00:25:50 +0100 |
| commit | 6a0bd9be26080a4a6a26586a535df31ccdc1b74a (patch) | |
| tree | d2b72ed41f6c6c4ed9289a7ad059232ced76abe0 /gnu | |
| parent | e46ad770e6718dfb952bcbc0727cc6ce4a07338a (diff) | |
gnu: Add python-cliff-bootstrap.
* gnu/packages/openstack.scm (python-cliff-bootstrap): New variable.
* gnu/packages/check.scm (python-stestr)[propagated-inputs]: Replace
python-cliff by python-cliff-boostrap.
Change-Id: I9cc7271bb090127e28a56a8964a9b4cf42fbc800
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/openstack.scm | 16 | ||||
| -rw-r--r-- | gnu/packages/python-check.scm | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 950e5d034ad..585cf9c883d 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm | |||
| @@ -87,6 +87,22 @@ sub-command to do the work. It uses plugins to define sub-commands, output | |||
| 87 | formatters, and other extensions.") | 87 | formatters, and other extensions.") |
| 88 | (license asl2.0))) | 88 | (license asl2.0))) |
| 89 | 89 | ||
| 90 | (define-public python-cliff-bootstrap | ||
| 91 | (hidden-package | ||
| 92 | (package/inherit python-cliff | ||
| 93 | (arguments | ||
| 94 | (substitute-keyword-arguments (package-arguments python-cliff) | ||
| 95 | ((#:tests? t? #t) | ||
| 96 | #f) | ||
| 97 | ((#:phases phases #~%standard-phases) | ||
| 98 | #~(modify-phases #$phases | ||
| 99 | (delete 'sanity-check))))) | ||
| 100 | (native-inputs | ||
| 101 | (list python-setuptools python-wheel)) | ||
| 102 | (propagated-inputs | ||
| 103 | (modify-inputs (package-propagated-inputs python-cliff) | ||
| 104 | (replace "python-stevedore" python-stevedore-bootstrap)))))) | ||
| 105 | |||
| 90 | (define-public python-debtcollector | 106 | (define-public python-debtcollector |
| 91 | (package | 107 | (package |
| 92 | (name "python-debtcollector") | 108 | (name "python-debtcollector") |
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 59ca2174a59..66320312f75 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm | |||
| @@ -3718,7 +3718,7 @@ possibly work.") | |||
| 3718 | python-flit-core-next ;requires >=3.12 | 3718 | python-flit-core-next ;requires >=3.12 |
| 3719 | python-setuptools)) | 3719 | python-setuptools)) |
| 3720 | (propagated-inputs | 3720 | (propagated-inputs |
| 3721 | (list python-cliff | 3721 | (list python-cliff-bootstrap |
| 3722 | python-fixtures | 3722 | python-fixtures |
| 3723 | python-pyyaml | 3723 | python-pyyaml |
| 3724 | python-subunit | 3724 | python-subunit |
