universedesktop: Add colour to Python
This commit is contained in:
@@ -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 = {
|
virtualisation = {
|
||||||
podman = {
|
podman = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
godot_4
|
godot_4
|
||||||
cbqn-replxx
|
cbqn-replxx
|
||||||
|
|
||||||
(pkgs.python3.withPackages (p: (with p; [
|
(mypython.withPackages (p: (with p; [
|
||||||
scipy
|
scipy
|
||||||
numpy
|
numpy
|
||||||
pandas
|
pandas
|
||||||
@@ -18,7 +24,7 @@
|
|||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
tqdm
|
tqdm
|
||||||
matplotlib
|
matplotlib
|
||||||
pyqt5
|
colour
|
||||||
|
|
||||||
ipython
|
ipython
|
||||||
python-lsp-server
|
python-lsp-server
|
||||||
|
|||||||
Reference in New Issue
Block a user