python312Packages.flask-cors: 5.0.0 -> 5.0.1
Diff: https://github.com/corydolphin/flask-cors/compare/refs/tags/5.0.0...refs/tags/5.0.1 Changelog: https://github.com/corydolphin/flask-cors/releases/tag/5.0.1
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
fetchFromGitHub,
|
||||
buildPythonPackage,
|
||||
flask,
|
||||
packaging,
|
||||
werkzeug,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
|
||||
@@ -14,34 +14,38 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flask-cors";
|
||||
version = "5.0.0";
|
||||
version = "5.0.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "corydolphin";
|
||||
repo = "flask-cors";
|
||||
tag = version;
|
||||
hash = "sha256-DbTeq18CLuwj8lzQnpyPMEfxgR97XlF0s37wkTYd4O4=";
|
||||
hash = "sha256-UVMZGdUpEKx5w85sSe8wSzjNYjsKPdbyBX7/QHJ3cyQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools ];
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ flask ];
|
||||
dependencies = [
|
||||
flask
|
||||
werkzeug
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
packaging
|
||||
];
|
||||
|
||||
passthru.tests = {
|
||||
inherit aiobotocore moto;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "Flask extension adding a decorator for CORS support";
|
||||
homepage = "https://github.com/corydolphin/flask-cors";
|
||||
changelog = "https://github.com/corydolphin/flask-cors/releases/tag/${src.tag}";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ nickcao ];
|
||||
license = with lib.licenses; [ mit ];
|
||||
maintainers = with lib.maintainers; [ nickcao ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user