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

29 lines
499 B
Nix
Raw Normal View History

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