mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
Merge pull request #153698 from fabaff/fix-readme-render
python3Packages.readme_renderer: relax cmarkgfm constraint
This commit is contained in:
commit
f26a811f8a
1 changed files with 5 additions and 2 deletions
|
@ -4,7 +4,6 @@
|
|||
, cmarkgfm
|
||||
, docutils
|
||||
, fetchPypi
|
||||
, future
|
||||
, mock
|
||||
, pygments
|
||||
, pytestCheckHook
|
||||
|
@ -28,7 +27,6 @@ buildPythonPackage rec {
|
|||
bleach
|
||||
cmarkgfm
|
||||
docutils
|
||||
future
|
||||
pygments
|
||||
];
|
||||
|
||||
|
@ -37,6 +35,11 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "cmarkgfm>=0.5.0,<0.7.0" "cmarkgfm>=0.5.0,<1"
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
"readme_renderer"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue