python3Packages.sphinx: drop imagemagick dependency

main
Dmitry Kalinkin 3 years ago
parent f355e8a060
commit 406d8cbf68
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333
  1. 6
      pkgs/development/python-modules/sphinx/default.nix

@ -22,7 +22,6 @@
, sphinxcontrib-websupport
# check phase
, html5lib
, imagemagick
, pytestCheckHook
, typed-ast
}:
@ -61,7 +60,6 @@ buildPythonPackage rec {
];
checkInputs = [
imagemagick
html5lib
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.8") [
@ -74,6 +72,10 @@ buildPythonPackage rec {
"test_defaults"
"test_defaults_json"
"test_latex_images"
# requires imagemagick (increases build closure size), doesn't
# test anything substantial
"test_ext_imgconverter"
];
meta = with lib; {

Loading…
Cancel
Save