nixpkgs/pkgs/applications/graphics/PythonMagick/default.nix

29 lines
900 B
Nix
Raw Normal View History

# This expression provides Python bindings to ImageMagick. Python libraries are supposed to be called via `python-packages.nix`.
{ stdenv, fetchurl, python, pkgconfig, imagemagick, autoreconfHook }:
stdenv.mkDerivation rec {
name = "pythonmagick-${version}";
2017-03-18 21:27:12 +00:00
version = "0.9.16";
src = fetchurl {
2016-10-13 20:50:30 +00:00
url = "mirror://imagemagick/python/releases/PythonMagick-${version}.tar.xz";
2017-09-14 12:39:28 +00:00
sha256 = "137278mfb5079lns2mmw73x8dhpzgwha53dyl00mmhj2z25varpn";
};
postPatch = ''
rm configure
'';
configureFlags = [ "--with-boost=${python.pkgs.boost}" ];
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ python python.pkgs.boost imagemagick ];
meta = with stdenv.lib; {
homepage = http://www.imagemagick.org/script/api.php;
license = licenses.imagemagick;
description = "PythonMagick provides object oriented bindings for the ImageMagick Library.";
};
}