mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
68 lines
1.3 KiB
Nix
68 lines
1.3 KiB
Nix
# FIXME: make gdk-pixbuf dependency optional
|
|
{
|
|
stdenv,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchPypi,
|
|
lib,
|
|
substituteAll,
|
|
pikepdf,
|
|
pytestCheckHook,
|
|
cairo,
|
|
cffi,
|
|
flit-core,
|
|
numpy,
|
|
withXcffib ? false,
|
|
xcffib,
|
|
glib,
|
|
gdk-pixbuf,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cairocffi";
|
|
version = "1.7.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-LkjuhkiE7Eo6NL+oyauZmfaIKG63FKFaQ+ydBow2VXs=";
|
|
};
|
|
|
|
patches = [
|
|
# OSError: dlopen() failed to load a library: gdk-pixbuf-2.0 / gdk-pixbuf-2.0-0
|
|
(substituteAll {
|
|
src = ./dlopen-paths.patch;
|
|
ext = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
cairo = cairo.out;
|
|
glib = glib.out;
|
|
gdk_pixbuf = gdk-pixbuf.out;
|
|
})
|
|
./fix_test_scaled_font.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ flit-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
cairo
|
|
cffi
|
|
] ++ lib.optional withXcffib xcffib;
|
|
|
|
nativeCheckInputs = [
|
|
numpy
|
|
pikepdf
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "cairocffi" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/Kozea/cairocffi/blob/v${version}/NEWS.rst";
|
|
homepage = "https://github.com/SimonSapin/cairocffi";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
description = "cffi-based cairo bindings for Python";
|
|
};
|
|
}
|