mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
57 lines
1.6 KiB
Nix
57 lines
1.6 KiB
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, glib
|
|
, vips
|
|
, cffi
|
|
, pkgconfig # from pythonPackages
|
|
, pkg-config # from pkgs
|
|
, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyvips";
|
|
version = "2.2.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libvips";
|
|
repo = "pyvips";
|
|
rev = "v${version}";
|
|
hash = "sha256-9S7h3bkm+QP78cpemYS7l3c8t+wXsJ5MUAP2T50R/Mc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig pkg-config ];
|
|
|
|
buildInputs = [ glib vips ];
|
|
|
|
propagatedBuildInputs = [ cffi ];
|
|
|
|
env = lib.optionalAttrs stdenv.cc.isClang {
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-function-pointer-types";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyvips/__init__.py \
|
|
--replace 'libvips.so.42' '${lib.getLib vips}/lib/libvips${stdenv.hostPlatform.extensions.sharedLibrary}' \
|
|
--replace 'libvips.42.dylib' '${lib.getLib vips}/lib/libvips${stdenv.hostPlatform.extensions.sharedLibrary}' \
|
|
--replace 'libgobject-2.0.so.0' '${glib.out}/lib/libgobject-2.0${stdenv.hostPlatform.extensions.sharedLibrary}' \
|
|
--replace 'libgobject-2.0.dylib' '${glib.out}/lib/libgobject-2.0${stdenv.hostPlatform.extensions.sharedLibrary}' \
|
|
'';
|
|
|
|
pythonImportsCheck = [ "pyvips" ];
|
|
|
|
meta = with lib; {
|
|
description = "A python wrapper for libvips";
|
|
homepage = "https://github.com/libvips/pyvips";
|
|
changelog = "https://github.com/libvips/pyvips/blob/v${version}/CHANGELOG.rst";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ccellado anthonyroussel ];
|
|
};
|
|
}
|