about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cairocffi/default.nix
blob: 9b64dbeb66c174a97c73cdbbe42734de282556fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# FIXME: make gdk-pixbuf dependency optional
{ stdenv
, buildPythonPackage
, pythonOlder
, fetchPypi
, lib
, substituteAll
, makeFontsConf
, freefont_ttf
, pytest
, pytest-runner
, glibcLocales
, cairo
, cffi
, numpy
, withXcffib ? false, xcffib
, python
, glib
, 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)