From 6fc2efa54e5e4c8f307fb35543a07310c55f96a9 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 17 May 2025 13:06:08 +0200 Subject: [PATCH] python313Packages.vat-moss: disable Uses the dead and removed cgi battery. --- pkgs/development/python-modules/vat-moss/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/vat-moss/default.nix b/pkgs/development/python-modules/vat-moss/default.nix index a3fba68a65c0..4971df9abbdb 100644 --- a/pkgs/development/python-modules/vat-moss/default.nix +++ b/pkgs/development/python-modules/vat-moss/default.nix @@ -3,6 +3,7 @@ buildPythonPackage, fetchFromGitHub, fetchpatch, + pythonAtLeast, pytestCheckHook, }: @@ -11,6 +12,9 @@ buildPythonPackage rec { version = "0.11.0"; format = "setuptools"; + # uses the removed cgi battery + disabled = pythonAtLeast "3.13"; + src = fetchFromGitHub { owner = "raphaelm"; repo = "vat_moss-python";