From 18b168517592a2235a50215b2de9a07840b2bf67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 15 Jul 2026 14:46:02 -0700 Subject: [PATCH] python3Packages.apispec: update dependencies --- pkgs/development/python-modules/apispec/default.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/apispec/default.nix b/pkgs/development/python-modules/apispec/default.nix index d3c07ea9bbff..4c81029244ee 100644 --- a/pkgs/development/python-modules/apispec/default.nix +++ b/pkgs/development/python-modules/apispec/default.nix @@ -4,10 +4,8 @@ fetchPypi, flit-core, marshmallow, - mock, openapi-spec-validator, packaging, - prance, pytestCheckHook, pyyaml, }: @@ -29,15 +27,10 @@ buildPythonPackage rec { optional-dependencies = { marshmallow = [ marshmallow ]; yaml = [ pyyaml ]; - validation = [ - openapi-spec-validator - prance - ] - ++ prance.optional-dependencies.osv; }; nativeCheckInputs = [ - mock + openapi-spec-validator pytestCheckHook ] ++ lib.concatAttrValues optional-dependencies;