mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
python.pkgs.cairocffi: make withXcffib work again (#57855)
This commit is contained in:
parent
b517554ea6
commit
180c68d88a
4 changed files with 90 additions and 63 deletions
26
pkgs/development/python-modules/cairocffi/0_9.nix
Normal file
26
pkgs/development/python-modules/cairocffi/0_9.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
# FIXME: make gdk_pixbuf dependency optional
|
||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, pythonOlder
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
, substituteAll
|
||||||
|
, makeFontsConf
|
||||||
|
, freefont_ttf
|
||||||
|
, pytest
|
||||||
|
, pytestrunner
|
||||||
|
, glibcLocales
|
||||||
|
, cairo
|
||||||
|
, cffi
|
||||||
|
, withXcffib ? false, xcffib
|
||||||
|
, python
|
||||||
|
, glib
|
||||||
|
, gdk_pixbuf
|
||||||
|
}@args:
|
||||||
|
|
||||||
|
import ./generic.nix ({
|
||||||
|
version = "0.9.0";
|
||||||
|
sha256 = "15386c3a9e08823d6826c4491eaccc7b7254b1dc587a3b9ce60c350c3f990337";
|
||||||
|
dlopen_patch = ./dlopen-paths-0.9.patch;
|
||||||
|
inherit withXcffib;
|
||||||
|
} // args)
|
|
@ -15,64 +15,13 @@
|
||||||
, withXcffib ? false, xcffib
|
, withXcffib ? false, xcffib
|
||||||
, python
|
, python
|
||||||
, glib
|
, glib
|
||||||
, gdk_pixbuf }:
|
, gdk_pixbuf
|
||||||
|
}@args:
|
||||||
|
|
||||||
let
|
import ./generic.nix ({
|
||||||
generic = { version, sha256, dlopen_patch, disabled ? false }:
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "cairocffi";
|
|
||||||
inherit version disabled;
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version sha256;
|
|
||||||
};
|
|
||||||
|
|
||||||
LC_ALL = "en_US.UTF-8";
|
|
||||||
|
|
||||||
# checkPhase require at least one 'normal' font and one 'monospace',
|
|
||||||
# otherwise glyph tests fails
|
|
||||||
FONTCONFIG_FILE = makeFontsConf {
|
|
||||||
fontDirectories = [ freefont_ttf ];
|
|
||||||
};
|
|
||||||
|
|
||||||
checkInputs = [ pytest pytestrunner glibcLocales ];
|
|
||||||
propagatedBuildInputs = [ cairo cffi ] ++ lib.optional withXcffib xcffib;
|
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
py.test $out/${python.sitePackages}
|
|
||||||
'';
|
|
||||||
|
|
||||||
patches = [
|
|
||||||
# OSError: dlopen() failed to load a library: gdk_pixbuf-2.0 / gdk_pixbuf-2.0-0
|
|
||||||
(substituteAll {
|
|
||||||
src = dlopen_patch;
|
|
||||||
ext = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
||||||
cairo = cairo.out;
|
|
||||||
glib = glib.out;
|
|
||||||
gdk_pixbuf = gdk_pixbuf.out;
|
|
||||||
})
|
|
||||||
./fix_test_scaled_font.patch
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
homepage = https://github.com/SimonSapin/cairocffi;
|
|
||||||
license = licenses.bsd3;
|
|
||||||
maintainers = with maintainers; [];
|
|
||||||
description = "cffi-based cairo bindings for Python";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
cairocffi_1_0 = generic {
|
|
||||||
version = "1.0.2";
|
version = "1.0.2";
|
||||||
sha256 = "01ac51ae12c4324ca5809ce270f9dd1b67f5166fe63bd3e497e9ea3ca91946ff";
|
sha256 = "01ac51ae12c4324ca5809ce270f9dd1b67f5166fe63bd3e497e9ea3ca91946ff";
|
||||||
dlopen_patch = ./dlopen-paths.patch;
|
dlopen_patch = ./dlopen-paths.patch;
|
||||||
disabled = pythonOlder "3.5";
|
disabled = pythonOlder "3.5";
|
||||||
};
|
inherit withXcffib;
|
||||||
|
} // args)
|
||||||
cairocffi_0_9 = generic {
|
|
||||||
version = "0.9.0";
|
|
||||||
sha256 = "15386c3a9e08823d6826c4491eaccc7b7254b1dc587a3b9ce60c350c3f990337";
|
|
||||||
dlopen_patch = ./dlopen-paths-0.9.patch;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
51
pkgs/development/python-modules/cairocffi/generic.nix
Normal file
51
pkgs/development/python-modules/cairocffi/generic.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{ version
|
||||||
|
, sha256
|
||||||
|
, dlopen_patch
|
||||||
|
, disabled ? false
|
||||||
|
, ...
|
||||||
|
}@args:
|
||||||
|
|
||||||
|
with args;
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cairocffi";
|
||||||
|
inherit version disabled;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version sha256;
|
||||||
|
};
|
||||||
|
|
||||||
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
|
||||||
|
# checkPhase require at least one 'normal' font and one 'monospace',
|
||||||
|
# otherwise glyph tests fails
|
||||||
|
FONTCONFIG_FILE = makeFontsConf {
|
||||||
|
fontDirectories = [ freefont_ttf ];
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest pytestrunner glibcLocales ];
|
||||||
|
propagatedBuildInputs = [ cairo cffi ] ++ lib.optional withXcffib xcffib;
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test $out/${python.sitePackages}
|
||||||
|
'';
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# OSError: dlopen() failed to load a library: gdk_pixbuf-2.0 / gdk_pixbuf-2.0-0
|
||||||
|
(substituteAll {
|
||||||
|
src = dlopen_patch;
|
||||||
|
ext = stdenv.hostPlatform.extensions.sharedLibrary;
|
||||||
|
cairo = cairo.out;
|
||||||
|
glib = glib.out;
|
||||||
|
gdk_pixbuf = gdk_pixbuf.out;
|
||||||
|
})
|
||||||
|
./fix_test_scaled_font.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/SimonSapin/cairocffi;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [];
|
||||||
|
description = "cffi-based cairo bindings for Python";
|
||||||
|
};
|
||||||
|
}
|
|
@ -1323,9 +1323,10 @@ in {
|
||||||
canmatrix = callPackage ../development/python-modules/canmatrix {};
|
canmatrix = callPackage ../development/python-modules/canmatrix {};
|
||||||
|
|
||||||
|
|
||||||
cairocffi = let
|
cairocffi = if isPy3k then
|
||||||
inherit (callPackage ../development/python-modules/cairocffi {}) cairocffi_1_0 cairocffi_0_9;
|
callPackage ../development/python-modules/cairocffi {}
|
||||||
in if isPy3k then cairocffi_1_0 else cairocffi_0_9;
|
else
|
||||||
|
callPackage ../development/python-modules/cairocffi/0_9.nix {};
|
||||||
|
|
||||||
cairosvg = if isPy3k then
|
cairosvg = if isPy3k then
|
||||||
callPackage ../development/python-modules/cairosvg {}
|
callPackage ../development/python-modules/cairosvg {}
|
||||||
|
|
Loading…
Reference in a new issue