mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
7ff2638b7f
The tests were failing due the switch to pytest5.
This issue has been addressed upstream in
a500f20866
which is included in v.1.1.0, so bumping the version and
updating the old patch.
Hydra log of the failure:
https://hydra.nixos.org/build/100785460/nixlog/6
28 lines
491 B
Nix
28 lines
491 B
Nix
# 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 = "1.1.0";
|
|
sha256 = "1nq53f5jipgy9jgyfxp43j40qfbmrhgn1cj8bp5rrb3liy3wbh7i";
|
|
dlopen_patch = ./dlopen-paths.patch;
|
|
disabled = pythonOlder "3.5";
|
|
inherit withXcffib;
|
|
} // args)
|