lol

python313Packages.openapi-core: 0.19.4 -> 0.19.5

Diff: https://github.com/p1c2u/openapi-core/compare/refs/tags/0.19.4...0.19.5

Changelog: https://github.com/python-openapi/openapi-core/releases/tag/0.19.5

+6 -5
+6 -5
pkgs/development/python-modules/openapi-core/default.nix
··· 21 21 pytest-aiohttp, 22 22 pytest-cov-stub, 23 23 pytestCheckHook, 24 - pythonOlder, 25 24 responses, 26 25 requests, 27 26 starlette, ··· 31 30 32 31 buildPythonPackage rec { 33 32 pname = "openapi-core"; 34 - version = "0.19.4"; 33 + version = "0.19.5"; 35 34 pyproject = true; 36 35 37 - disabled = pythonOlder "3.8"; 38 - 39 36 src = fetchFromGitHub { 40 37 owner = "p1c2u"; 41 38 repo = "openapi-core"; 42 39 tag = version; 43 - hash = "sha256-JvWusDokov8G0UO9oOkGicAI7wYZTnNywbvKMZKQWiQ="; 40 + hash = "sha256-Q7Z6bq8TztNm2QLL7g23rOGnXVfiTDjquHAhcSWYlC4="; 44 41 }; 45 42 46 43 build-system = [ poetry-core ]; 44 + 45 + pythonRelaxDeps = [ 46 + "werkzeug" 47 + ]; 47 48 48 49 dependencies = [ 49 50 isodate