mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 19:39:34 +01:00
gnu: python-stevedore: Propagate pbr.
* gnu/packages/openstack.scm (python-stevedore)[native-inputs]: Move python-pbr from here... [propagated-inputs]: ...to here. [arguments]: Add phase to patch requirements.
This commit is contained in:
parent
9fd8f44bd7
commit
863bd265e4
1 changed files with 10 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
||||||
;;; Copyright © 2016, 2017, 2019 Clément Lassieur <clement@lassieur.org>
|
;;; Copyright © 2016, 2017, 2019 Clément Lassieur <clement@lassieur.org>
|
||||||
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -307,8 +307,15 @@ to docs.openstack.org and developer.openstack.org.")
|
||||||
(arguments
|
(arguments
|
||||||
;; The tests are disabled to avoid a circular dependency with
|
;; The tests are disabled to avoid a circular dependency with
|
||||||
;; python-stestr.
|
;; python-stestr.
|
||||||
`(#:tests? #f))
|
`(#:tests? #f
|
||||||
(native-inputs
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'use-pbr-3
|
||||||
|
(lambda _
|
||||||
|
(substitute* '("setup.py"
|
||||||
|
"requirements.txt")
|
||||||
|
(("pbr!=2.1.0,>=2.0.0") "pbr>=3.0.0")))))))
|
||||||
|
(propagated-inputs
|
||||||
`(("python-pbr" ,python-pbr)))
|
`(("python-pbr" ,python-pbr)))
|
||||||
(home-page "https://github.com/dreamhost/stevedore")
|
(home-page "https://github.com/dreamhost/stevedore")
|
||||||
(synopsis "Manage dynamic plugins for Python applications")
|
(synopsis "Manage dynamic plugins for Python applications")
|
||||||
|
|
Loading…
Add table
Reference in a new issue