python3Packages.flask-cors: 4.0.2 -> 5.0.0

https://github.com/corydolphin/flask-cors/releases/tag/5.0.0

+3 -3
+3 -3
pkgs/development/python-modules/flask-cors/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "flask-cors"; 17 - version = "4.0.2"; 17 + version = "5.0.0"; 18 18 pyproject = true; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "corydolphin"; 22 22 repo = "flask-cors"; 23 23 tag = version; 24 - hash = "sha256-I1iCnUT0+ZThf+c9Vm9GgH5hYL/pcBReOjKJGRNsRrg="; 24 + hash = "sha256-DbTeq18CLuwj8lzQnpyPMEfxgR97XlF0s37wkTYd4O4="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ setuptools ]; ··· 40 40 meta = with lib; { 41 41 description = "Flask extension adding a decorator for CORS support"; 42 42 homepage = "https://github.com/corydolphin/flask-cors"; 43 - changelog = "https://github.com/corydolphin/flask-cors/releases/tag/v${version}"; 43 + changelog = "https://github.com/corydolphin/flask-cors/releases/tag/${src.tag}"; 44 44 license = with licenses; [ mit ]; 45 45 maintainers = with maintainers; [ nickcao ]; 46 46 };