5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
70 lines
1.4 KiB
Nix
70 lines
1.4 KiB
Nix
# FIXME: make gdk-pixbuf dependency optional
|
|
{ stdenv
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, lib
|
|
, substituteAll
|
|
, makeFontsConf
|
|
, freefont_ttf
|
|
, pikepdf
|
|
, pytestCheckHook
|
|
, cairo
|
|
, cffi
|
|
, flit-core
|
|
, numpy
|
|
, withXcffib ? false
|
|
, xcffib
|
|
, glib
|
|
, gdk-pixbuf
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cairocffi";
|
|
version = "1.6.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-eOa75HNXZAxFPQvpKfpJzQXM4uEobz0qHKnL2n79uLc=";
|
|
};
|
|
|
|
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 = with maintainers; [ ];
|
|
description = "cffi-based cairo bindings for Python";
|
|
};
|
|
}
|