9 buildPythonPackage rec {
12 format = "setuptools";
17 hash = "sha256-9QE0hOr3og6yLRghqu/mC1DMMpciNytfhWXUbUqq/Mo=";
21 substituteInPlace wand/api.py --replace \
22 "magick_home = os.environ.get('MAGICK_HOME')" \
23 "magick_home = '${imagemagickBig}'"
32 # https://github.com/emcconville/wand/issues/558
33 "test_forward_fourier_transform"
34 "test_inverse_fourier_transform"
35 # our imagemagick doesn't set MagickReleaseDate
36 "test_configure_options"
39 passthru.imagemagick = imagemagickBig;
42 changelog = "https://docs.wand-py.org/en/${version}/changes.html";
43 description = "Ctypes-based simple MagickWand API binding for Python";
44 homepage = "http://wand-py.org/";
45 license = [ licenses.mit ];
46 maintainers = with maintainers; [ dotlambda ];