python313Packages.web: fix build

fixes https://hydra.nixos.org/build/290704997
This commit is contained in:
Peder Bergebakken Sundt
2025-03-03 02:16:26 +01:00
parent 515eb74927
commit 9842ae7e94
@@ -2,8 +2,10 @@
lib,
buildPythonPackage,
fetchPypi,
pythonAtLeast,
pytestCheckHook,
cheroot,
legacy-cgi,
dbutils,
mysqlclient,
pymysql,
@@ -20,7 +22,9 @@ buildPythonPackage rec {
sha256 = "5ce684caa240654cae5950da8b4b7bc178812031e08f990518d072bd44ab525e";
};
propagatedBuildInputs = [ cheroot ];
propagatedBuildInputs = [
cheroot
] ++ lib.optional (pythonAtLeast "3.13") legacy-cgi;
# requires multiple running databases
doCheck = false;