From 8429b7d6c081cb6eee572ccb5d733256d39fc59c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 6 May 2024 15:06:12 +0200 Subject: [PATCH] python311Packages.lightning-utilities: mark as broken for python3.12 --- pkgs/development/python-modules/lightning-utilities/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/lightning-utilities/default.nix b/pkgs/development/python-modules/lightning-utilities/default.nix index 7287e13e7e78..7dba0a125f57 100644 --- a/pkgs/development/python-modules/lightning-utilities/default.nix +++ b/pkgs/development/python-modules/lightning-utilities/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchFromGitHub +, pythonAtLeast # build , setuptools @@ -74,5 +75,6 @@ buildPythonPackage rec { homepage = "https://github.com/Lightning-AI/utilities"; license = licenses.asl20; maintainers = with maintainers; [ GaetanLepage ]; + broken = pythonAtLeast "3.12"; }; }