nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.openapi3: relax and upgrade pydantic (#405396)

authored by

OTABI Tomoya and committed by
GitHub
1d525789 754285d8

+7 -4
+7 -4
pkgs/development/python-modules/openapi3/default.nix
··· 11 11 uvloop, 12 12 hypercorn, 13 13 starlette, 14 - pydantic_1, 14 + pydantic, 15 15 }: 16 16 17 17 buildPythonPackage rec { ··· 27 27 hash = "sha256-Crn+nRbptRycnWJzH8Tm/BBLcBSRCcNtLX8NoKnSDdA="; 28 28 }; 29 29 30 - nativeBuildInputs = [ setuptools ]; 30 + # pydantic==1.10.2 only affects checks 31 + pythonRelaxDeps = [ "pydantic" ]; 31 32 32 - propagatedBuildInputs = [ 33 + build-system = [ setuptools ]; 34 + 35 + dependencies = [ 33 36 requests 34 37 pyyaml 35 38 ]; ··· 40 37 nativeCheckInputs = [ 41 38 pytestCheckHook 42 39 pytest-asyncio 43 - pydantic_1 40 + pydantic 44 41 uvloop 45 42 hypercorn 46 43 starlette