about summary refs log tree commit diff
path: root/pkgs/development/python-modules/matplotlib
AgeCommit message (Collapse)AuthorFilesLines
2022-01-01python2Packages: remove superfluous overridesRobert Schütz1-80/+0
Since Python 2 is not supported anymore we only keep those overrides which are used by leaf packages.
2021-12-20python3Packages.matplotlib: 3.5.0 -> 3.5.1 (#151423)Mauricio Collares1-2/+2
2021-12-15python3Packages.matplotlib: switch to use an absolute path in MPLSETUPCFGDmitry Kalinkin1-5/+1
The upstream made a transition setup.cfg -> mplsetup.cfg https://github.com/matplotlib/matplotlib/commit/93b5c0fb08b5426623fa3927a515eaec0aac0c36 This should allow us to be compatible with some reasonable version overrides https://github.com/NixOS/nixpkgs/pull/147742#issuecomment-995178116
2021-12-15python3Packages.matplotlib: setup.cfg -> mplsetup.cfgDmitry Kalinkin1-2/+2
This addresses a regression on darwin. An alternative to this would be to set MPLSETUPCFG as was suggested in
2021-12-02python3Packages.matplotlib: update requirementsFabian Affolter1-11/+42
2021-11-30python3Packages.matplotlib: remove debug linesJonathan Ringer1-4/+3
2021-11-30python3Packages.matplotlib: fix build, disable network fetch of depsJonathan Ringer1-3/+14
2021-11-30python3Packages.matplotlib: 3.4.3 -> 3.5.0Jonathan Ringer1-2/+2
2021-08-21python3Packages.matplotlib: 3.4.2 -> 3.4.3 (#134906)Samuel Ainsworth1-2/+2
2021-07-03treewide: use pythonPackages.python-dateutil instead of pythonPackages.dateutilRobert Schütz2-4/+4
2021-06-22python3Packages.matplotlib: 3.4.1 -> 3.4.2Martin Weinelt1-2/+2
2021-05-26pythonPackages.matplotlib: add licensesrnhmjoj1-0/+1
2021-05-26pythonPackages.matplotlib: remove unsused argumentsrnhmjoj1-3/+2
2021-05-26pythonPackages.matplotlib: fix headless detectionrnhmjoj1-3/+15
The default backend is chosen based on the content of the $DISPLAY variable *and* a successfull call to libX11, loaded via dlopen(). The test fails because dlopen looks in /usr/lib and /lib, so matplotlib falls back to a headless backend. To reproduce try running: $ nix-shell -I nixpkgs=$PWD -p \ 'python3.withPackages (p: [ p.matplotlib ])' --run python >>> import matplotlib.pyplot as plt >>> assert plt.get_backend() == "TkAgg"
2021-04-20python{2,3}Packages.matplotlib: remove pointless assertsDmitry Kalinkin2-21/+5
2021-04-20python2Packages.matplotlib: remove invalid libs.system_freetype setup optionDmitry Kalinkin1-3/+0
2021-04-20python3Packages.matplotlib: 3.3.4 -> 3.4.1Dmitry Kalinkin1-5/+6
2021-04-20python{2,3}Packages.matplotlib: use lib.generators.toINI to generate setup.cfgDmitry Kalinkin4-16/+19
2021-02-26python3Packages.matplotlib: 3.3.3 -> 3.3.4Frederik Rietdijk1-2/+2
2021-01-24pkgs/development/python-modules: stdenv.lib -> libPavol Rusnak2-18/+16
2021-01-19treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer2-4/+4
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch2-4/+4
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-12-01python3Packages.matplotlib: 3.3.2 -> 3.3.3Frederik Rietdijk1-2/+2
2020-11-05python3Packages.matplotlib: 3.3.1 -> 3.3.2Frederik Rietdijk1-2/+2
2020-09-09matplotlib: Disable LTO on darwin.Shea Levy2-1/+8
Needs #19312 or equivalent to work.
2020-08-16python3Packages.matplotlib: fix depsJonathan Ringer1-2/+2
2020-08-16python: matplotlib: 3.3.0 -> 3.3.1Frederik Rietdijk1-2/+2
2020-08-04python3.pkgs.matplotlib: 3.2.1 -> 3.3.0K9002-3/+7
2020-04-21python3Packages.matplotlib: 3.1.3 -> 3.2.1, and various cleanups (#84362)Dmitry Kalinkin4-62/+28
* pythonPackages.matplotlib: add veprbl to maintainers * pythonPackages.matplotlib: remove an old darwin hack * pythonPackages.matplotlib: remove python and stdenv from buildInputs * python3Packages.matplotlib: remove a hack for python33 * pythonPackages.matplotlib: remove outdated checkPhase Downloading the baseline_images is not a real issue, building against older freetype (local_freetype = True) is, perhaps, not what we want. The good news is that the tests would pass (tested on 3.2.1) if we were to enable them: ========== 6684 passed, 1332 skipped, 10 xfailed in 228.64s (0:03:48) ========== * pythonPackages.matplotlib: provide setup.cfg from a file instead of a patch * python3Packages.matplotlib: 3.1.3 -> 3.2.1
2020-03-27python3Packages.matplotlib: remove nose from propagatedBuildInputsBen Darwin1-1/+1
2020-02-09python: matplotlib: 3.1.2 -> 3.1.3Frederik Rietdijk1-2/+2
2019-12-15python: matplotlib: 3.1.1 -> 3.1.2Frederik Rietdijk1-2/+2
2019-12-10matplotlib: remove optional gtk2worldofpeace2-8/+2
2019-10-20pythonPackages.matplotlib: fix dependencies to use pyqt5 insteadft1-3/+3
2019-07-04python3Packages.matplotlib: 3.0.3 -> 3.1.1Dmitry Kalinkin1-2/+2
2019-06-16treewide: remove unused variables (#63177)volth1-1/+1
* treewide: remove unused variables * making ofborg happy
2019-04-26treewide: remove old patches for macOSMatthew Bauer4-25/+2
These shouldn’t be needed now that we are on macOS 10.12.
2019-03-29Merge pull request #51344 from timokau/sagenb-matplotlib-fixSilvan Mosberger2-2/+4
pythonPackages.matplotlib: enable tk backend by default
2019-03-07python3Packages.matplotlib: 3.0.2 -> 3.0.3Matthieu Coudron1-2/+2
2019-02-17matplotlib: fix pkgconfig situationFrederik Rietdijk2-2/+6
We need pkgs.pkgconfig, and not pythonPackages.pkgconfig.
2019-02-17Revert "python.pkgs.matplotlib: use pkgs.pkgconfig"Frederik Rietdijk1-3/+1
This reverts commit c78f98db56b580bada5c56ef38793f4fa5c140b6.
2019-02-11python.pkgs.matplotlib: add numpy 1.6 compat patchTimo Kaufmann1-3/+11
Numpy deprecated asscalar in 1.16. This will be fixed in the next matplotlib version, but to avoid deprecation warnings (and because they are breaking the sage testsuite), it can't hurt to backport the fix already. Upstream: https://github.com/matplotlib/matplotlib/pull/12478
2019-01-18python.pkgs.matplotlib: use pkgs.pkgconfigRobert Schütz1-1/+3
2019-01-04python: add isPy2 attribute to passthruFrederik Rietdijk1-1/+1
Some packages relied on it. For consistency, also introduce isPy3 (which is the same as isPy3k).
2018-12-03pythonPackages.matplotlib: enable tk backend by defaultTimo Kaufmann2-2/+4
We currently do not build mathplotlib with any backend. This can be very confusing for users. They will try to use matplotlib and it will simply display nothing (see #51337). We should ship at least one backend. `tk` was chosen somewhat arbitrarily. The gtk backend is problematic (see https://github.com/NixOS/nixpkgs/issues/50959#issuecomment-441327767) so tkinter seems like a good choice. There is already a backend provided on darwin so there is no reason to include tk there.
2018-12-02gobject-introspection: rename packageJan Tojnar2-4/+4
camelCase package name was a huge inconsistency in GNOME package set.
2018-11-11matplotlib: 2.2.3 -> 3.0.2Sebastien Maret4-14/+117
Python 3 will use the new matplotlib 3.x while Python 2 will use 2.x. matplotlib: keep 2.2.3 for Python2k
2018-08-25python: matplotlib: 2.2.2 -> 2.2.3Frederik Rietdijk1-2/+2
2018-06-23pythonPackages: remove `name` attribute`Frederik Rietdijk1-4/+3
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
2018-04-08python: matplotlib: 2.1.2 -> 2.2.2Frederik Rietdijk1-4/+4