Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wand / default.nix
blob416fa74eaed51db56dc254ba7be2a3bb7c46d69f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , imagemagickBig
5 , py
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "wand";
11   version = "0.6.13";
12   format = "setuptools";
14   src = fetchPypi {
15     pname = "Wand";
16     inherit version;
17     hash = "sha256-9QE0hOr3og6yLRghqu/mC1DMMpciNytfhWXUbUqq/Mo=";
18   };
20   postPatch = ''
21     substituteInPlace wand/api.py --replace \
22       "magick_home = os.environ.get('MAGICK_HOME')" \
23       "magick_home = '${imagemagickBig}'"
24   '';
26   nativeCheckInputs = [
27     py
28     pytestCheckHook
29   ];
31   disabledTests = [
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"
37   ];
39   passthru.imagemagick = imagemagickBig;
41   meta = with lib; {
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 ];
47   };