diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-03-21 21:38:19 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-03-21 21:38:19 -0400 |
commit | 49b350fafc2c3ea1db66461b73d4e304cd13ec92 (patch) | |
tree | 9b9b1a4a383b5175241ae6b91b83de0590f13983 /gnu/packages/markup.scm | |
parent | 03b5668a035ba96c9690476078c5ee1d5793f3e2 (diff) | |
parent | e584a093f943be216fdc93895281fde835836b8d (diff) |
Merge branch 'master' into staging.
Diffstat (limited to 'gnu/packages/markup.scm')
-rw-r--r-- | gnu/packages/markup.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm index ce131a5835..0292c02a7f 100644 --- a/gnu/packages/markup.scm +++ b/gnu/packages/markup.scm @@ -269,6 +269,13 @@ implementation. (arguments (list #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + ;; Don't depend on bleeding-edge CFFI, as it is + ;; apparently only needed for Python >= 3.10. + (substitute* "setup.py" + (("cffi>=1\\.15\\.0") + "cffi>=1.0")))) (add-after 'unpack 'copy-cmark-gfm (lambda _ ;; This package needs the cmark-gfm source files @@ -291,7 +298,7 @@ implementation. (when tests? (invoke "pytest" "-vv" "tests"))))))) (native-inputs (list python-pytest)) (inputs (list cmark-gfm)) - (propagated-inputs (list python-cffi-1.15)) + (propagated-inputs (list python-cffi)) (home-page "https://github.com/theacodes/cmarkgfm") (synopsis "Python bindings for GitHub's fork of cmark") (description |