universedesktop: Add colour to Python

This commit is contained in:
2024-11-27 21:57:23 -05:00
parent e83c380ce6
commit b8038a30c8

View File

@@ -1,15 +1,21 @@
{ lib, config, pkgs, ... }: {
{ lib, config, pkgs, ... }: let
mypython = let
packageOverrides = final: prev: {
matplotlib = prev.matplotlib.override {enableGtk3 = true;};
};
in pkgs.python3.override {inherit packageOverrides;};
in {
virtualisation = {
podman = {
enable = true;
};
};
environment.systemPackages = with pkgs; [
godot_4
cbqn-replxx
(pkgs.python3.withPackages (p: (with p; [
(mypython.withPackages (p: (with p; [
scipy
numpy
pandas
@@ -18,7 +24,7 @@
beautifulsoup4
tqdm
matplotlib
pyqt5
colour
ipython
python-lsp-server