mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
python3Packages.myst-parser: relax docutils constraint
Two failing tests that expect some autogenerated URLs to use http, while the use https. Also an old path to python peps was replaced with a new path.
This commit is contained in:
parent
4af35d92a0
commit
ad6dd34711
@ -30,6 +30,11 @@ buildPythonPackage rec {
|
|||||||
sha256 = "sha256-GEtrC7o5YnkuvBfQQfhG5P74QMiHz63Fdh1cC/r5CF0=";
|
sha256 = "sha256-GEtrC7o5YnkuvBfQQfhG5P74QMiHz63Fdh1cC/r5CF0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace pyproject.toml \
|
||||||
|
--replace "docutils>=0.15,<0.19" "docutils>=0.15"
|
||||||
|
'';
|
||||||
|
|
||||||
format = "flit";
|
format = "flit";
|
||||||
|
|
||||||
nativeBuildInputs = [ flit-core ];
|
nativeBuildInputs = [ flit-core ];
|
||||||
@ -60,6 +65,8 @@ buildPythonPackage rec {
|
|||||||
"test_footnotes"
|
"test_footnotes"
|
||||||
"test_gettext_html"
|
"test_gettext_html"
|
||||||
"test_fieldlist_extension"
|
"test_fieldlist_extension"
|
||||||
|
# docutils 0.19 expectation mismatches
|
||||||
|
"test_docutils_roles"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user