From a5f30c83b37d3171d5a8c1d2daf2c46829e04803 Mon Sep 17 00:00:00 2001 From: m3tam3re Date: Tue, 14 Oct 2025 20:45:04 +0200 Subject: [PATCH] python env version fix for marimo --- shells/default.nix | 4 ---- shells/python.nix | 6 +++++- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/shells/default.nix b/shells/default.nix index ae1cd1d..64ee515 100644 --- a/shells/default.nix +++ b/shells/default.nix @@ -27,10 +27,6 @@ }; # Import all individual shell environments - rust = import ./rust.nix {inherit pkgs;}; python = import ./python.nix {inherit pkgs;}; - nodejs = import ./nodejs.nix {inherit pkgs;}; - go = import ./go.nix {inherit pkgs;}; - web = import ./web.nix {inherit pkgs;}; devops = import ./devops.nix {inherit pkgs;}; } diff --git a/shells/python.nix b/shells/python.nix index 40ed97f..d9da096 100644 --- a/shells/python.nix +++ b/shells/python.nix @@ -2,7 +2,7 @@ # Usage: nix develop .#python (drops into Nushell) {pkgs}: let # Use the latest Python available in nixpkgs - python = pkgs.python314; + python = pkgs.python313; in pkgs.mkShell { name = "python-marimo-dev"; @@ -11,6 +11,10 @@ in # Python interpreter python + # Tooling + black + pyrefly + # Modern package manager uv