python3Packages.flask-cors: 6.0.2 -> 6.0.5

Diff: https://github.com/corydolphin/flask-cors/compare/6.0.2...6.0.5

Changelog: https://github.com/corydolphin/flask-cors/releases/tag/6.0.5
This commit is contained in:
Robert Schütz 2026-06-19 10:25:29 -07:00
commit 41a95eb3f6

View file

@ -6,6 +6,7 @@
werkzeug,
pytestCheckHook,
setuptools,
setuptools-scm,
# for passthru.tests
aiobotocore,
@ -14,18 +15,19 @@
buildPythonPackage rec {
pname = "flask-cors";
version = "6.0.2";
version = "6.0.5";
pyproject = true;
src = fetchFromGitHub {
owner = "corydolphin";
repo = "flask-cors";
tag = version;
hash = "sha256-9WlD5Qd0WiBDrVHf5nT1qAK2gtYavlPnY7qFkiAgxws=";
hash = "sha256-fngKJm7/7BMcWPPFncTCWw2sL1UJ0t4ICpXr95yNpbg=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
@ -33,6 +35,8 @@ buildPythonPackage rec {
werkzeug
];
pythonImportsCheck = [ "flask_cors" ];
nativeCheckInputs = [
pytestCheckHook
];