nixpkgs/pkgs/development/python-modules/cairocffi/default.nix

28 lines
491 B
Nix
Raw Normal View History

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