summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/matplotlib-inline
AgeCommit message (Collapse)Author
2024-07-29treewide: remove unused with statements from maintainer listsJörg Thalheim
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
2024-06-25treewide: remove jonringer as package maintainerPaul Meyer
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-05-22python3Packages: format with nixfmtMartin Weinelt
2024-04-22python3Packages.matplotlib-inline: 0.1.6 -> 0.1.7Martin Weinelt
2023-12-07python3.pkgs.*: Explicitly pass buildPythonPackage format parameteradisbladis
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
2023-03-03python3.pkgs: Migrate fetchers to use hashMartin Weinelt
when they already rely on SRI hashes.
2022-09-19python3Packages.matplotlib-inline: 0.1.3 -> 0.1.6Martin Weinelt
2021-12-27Revert "Revert "matplotlib-inline: Don't depend on matplotlib -> smaller ↵Dmitry Kalinkin
ipython closure"" Un-revert on staging This reverts commit 37e104da68f8edaf590c6ffdc70d5065545e23e3.
2021-12-27Revert "matplotlib-inline: Don't depend on matplotlib -> smaller ipython ↵Dmitry Kalinkin
closure" Meant to go to staging, not staging-next This reverts commit f38610c09ba8babd6e21b5d0e6f106762e5dcdbe.
2021-12-27matplotlib-inline: Don't depend on matplotlib -> smaller ipython closureBenoit de Chezelles
The lib `matplotlib-inline` is only a shim to integrate `matplotlib` in ipython, but it doesn't actually require it. If one wants to use the matplotlib integration, `matplotlib` need to be installed separatedly, then calling `%matplotlib inline` at a ipython prompt will work. Not including `matplotlib` is closer to a non-Nix installation: Installing ipython in a fresh venv also does not install `matplotlib`. NOTE: ipython's closure is now ~160MB instead of ~400MB. (including ~100MB for python itself)
2021-10-11python3Packages.matplotlib-inline: 0.1.2 -> 0.1.3Martin Weinelt
2021-06-22python3Packages.matplotlib-inline: init at 0.1.2Jonathan Ringer