nixpkgs/pkgs/development/python-modules/Wand/default.nix

34 lines
763 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, imagemagick7Big
}:
buildPythonPackage rec {
pname = "Wand";
2019-05-30 08:49:48 +02:00
version = "0.5.4";
src = fetchPypi {
inherit pname version;
2019-05-30 08:49:48 +02:00
sha256 = "e2e08e19a37c61e85eaa307fe319889af46fe4cac6c23e3ae668b96be3e497ff";
};
postPatch = ''
substituteInPlace wand/api.py --replace \
"magick_home = os.environ.get('MAGICK_HOME')" \
"magick_home = '${imagemagick7Big}'"
'';
# tests not included with pypi release
doCheck = false;
passthru.imagemagick = imagemagick7Big;
meta = with stdenv.lib; {
description = "Ctypes-based simple MagickWand API binding for Python";
homepage = http://wand-py.org/;
license = [ licenses.mit ];
maintainers = with maintainers; [ infinisil ];
};
}