0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

python3Packages.matplotlib: fix deps

This commit is contained in:
Jonathan Ringer 2020-08-16 21:42:57 -07:00
parent e55ad63de1
commit a93c4f5129
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,7 +1,7 @@
{ stdenv, fetchPypi, python, buildPythonPackage, isPy3k, pycairo, backports_functools_lru_cache { stdenv, fetchPypi, python, buildPythonPackage, isPy3k, pycairo, backports_functools_lru_cache
, which, cycler, dateutil, nose, numpy, pyparsing, sphinx, tornado, kiwisolver , which, cycler, dateutil, nose, numpy, pyparsing, sphinx, tornado, kiwisolver
, freetype, libpng, pkgconfig, mock, pytz, pygobject3, gobject-introspection , freetype, libpng, pkgconfig, mock, pytz, pygobject3, gobject-introspection
, pillow , certifi, pillow
, enableGhostscript ? true, ghostscript ? null, gtk3 , enableGhostscript ? true, ghostscript ? null, gtk3
, enableGtk3 ? false, cairo , enableGtk3 ? false, cairo
# darwin has its own "MacOSX" backend # darwin has its own "MacOSX" backend
@ -40,7 +40,7 @@ buildPythonPackage rec {
propagatedBuildInputs = propagatedBuildInputs =
[ cycler dateutil numpy pyparsing tornado freetype kiwisolver [ cycler dateutil numpy pyparsing tornado freetype kiwisolver
libpng mock pytz pillow ] certifi libpng mock pytz pillow ]
++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ] ++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ]
++ stdenv.lib.optionals enableTk [ tcl tk tkinter libX11 ] ++ stdenv.lib.optionals enableTk [ tcl tk tkinter libX11 ]
++ stdenv.lib.optionals enableQt [ pyqt5 ]; ++ stdenv.lib.optionals enableQt [ pyqt5 ];