gnu: abjad: Fix build.
* gnu/packages/music.scm (abjad)[arguments]: Permit newer versions of uqbar. [native-inputs]: Move everything except PYTHON-INICONFIG to ... [propagated-inputs]: ... here. Add PYTHON-PYTEST-HELPERS-NAMESPACE.
parent
a59ec46944
commit
3aca3f2877
|
@ -30,7 +30,7 @@
|
||||||
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
|
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||||
;;; Copyright © 2020, 2022 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020, 2022 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
||||||
;;; Copyright © 2019 Riku Viitanen <riku.viitanen0@gmail.com>
|
;;; Copyright © 2019 Riku Viitanen <riku.viitanen0@gmail.com>
|
||||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||||
;;; Copyright © 2021 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
;;; Copyright © 2021 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
||||||
|
@ -1564,26 +1564,35 @@ listeners answer questions about music quickly and simply.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'loosen-requirements
|
||||||
|
(lambda _
|
||||||
|
(substitute* "setup.py"
|
||||||
|
;; Permit newer versions of uqbar. Remove for >3.4.
|
||||||
|
((", <0\\.5\\.0")
|
||||||
|
""))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
;; See: https://stackoverflow.com/a/34140498
|
;; See: https://stackoverflow.com/a/34140498
|
||||||
(invoke "python" "-m" "pytest" "tests")
|
(invoke "python" "-m" "pytest" "tests")))))))
|
||||||
#t))))))
|
(inputs
|
||||||
(native-inputs
|
(list lilypond))
|
||||||
(list python-black
|
(propagated-inputs
|
||||||
|
(list python-ply
|
||||||
|
python-quicktions
|
||||||
|
python-roman
|
||||||
|
python-six
|
||||||
|
python-uqbar
|
||||||
|
;; XXX: These test dependencies(?) are listed as install_requires
|
||||||
|
;; in setup.py. Propagate accordingly.
|
||||||
|
python-black
|
||||||
python-flake8
|
python-flake8
|
||||||
python-iniconfig
|
|
||||||
python-isort
|
python-isort
|
||||||
python-mypy
|
python-mypy
|
||||||
python-pytest
|
python-pytest
|
||||||
python-pytest-cov
|
python-pytest-cov
|
||||||
|
python-pytest-helpers-namespace
|
||||||
python-sphinx-autodoc-typehints))
|
python-sphinx-autodoc-typehints))
|
||||||
(inputs
|
|
||||||
(list lilypond))
|
|
||||||
(propagated-inputs
|
|
||||||
(list python-ply python-quicktions python-roman python-six
|
|
||||||
python-uqbar))
|
|
||||||
(home-page "https://abjad.github.io")
|
(home-page "https://abjad.github.io")
|
||||||
(synopsis "Python API for building LilyPond files")
|
(synopsis "Python API for building LilyPond files")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue