2019-05-22 13:03:39 +02:00
|
|
|
# FIXME: make gdk-pixbuf dependency optional
|
2018-06-06 09:17:52 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
2019-03-02 18:56:39 +01:00
|
|
|
, pythonOlder
|
2018-02-21 04:01:34 +01:00
|
|
|
, fetchPypi
|
|
|
|
, lib
|
|
|
|
, substituteAll
|
2018-02-21 03:25:23 +01:00
|
|
|
, makeFontsConf
|
|
|
|
, freefont_ttf
|
|
|
|
, pytest
|
2019-03-02 18:56:39 +01:00
|
|
|
, pytestrunner
|
2018-02-21 03:25:23 +01:00
|
|
|
, glibcLocales
|
|
|
|
, cairo
|
|
|
|
, cffi
|
|
|
|
, withXcffib ? false, xcffib
|
|
|
|
, python
|
|
|
|
, glib
|
2019-05-22 13:03:39 +02:00
|
|
|
, gdk-pixbuf
|
2019-03-19 10:20:05 +01:00
|
|
|
}@args:
|
|
|
|
|
|
|
|
import ./generic.nix ({
|
2019-09-22 16:27:36 +02:00
|
|
|
version = "1.1.0";
|
|
|
|
sha256 = "1nq53f5jipgy9jgyfxp43j40qfbmrhgn1cj8bp5rrb3liy3wbh7i";
|
2019-03-19 10:20:05 +01:00
|
|
|
dlopen_patch = ./dlopen-paths.patch;
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
inherit withXcffib;
|
|
|
|
} // args)
|