From efd6331c95521d24bc7802fc380af9509cf44a15 Mon Sep 17 00:00:00 2001 From: Tobias Mayer Date: Sun, 3 Nov 2024 06:47:22 +0100 Subject: [PATCH] pytrainer: unpin python 3.10 The `websockets` library, which is a transitive dependency does not build with Python 3.10 any more. Switching to the default Python version fixes the build. --- pkgs/applications/misc/pytrainer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/pytrainer/default.nix b/pkgs/applications/misc/pytrainer/default.nix index 5f226752ccd3..80ebfc7c5a11 100644 --- a/pkgs/applications/misc/pytrainer/default.nix +++ b/pkgs/applications/misc/pytrainer/default.nix @@ -1,5 +1,5 @@ { lib -, python310 +, python3 , fetchFromGitHub , gdk-pixbuf , adwaita-icon-theme @@ -17,7 +17,7 @@ }: let - python = python310.override { + python = python3.override { self = python; packageOverrides = (self: super: { matplotlib = super.matplotlib.override {