diff --git a/pkgs/development/python-modules/flask-httpauth/default.nix b/pkgs/development/python-modules/flask-httpauth/default.nix index c96555c756e4..71e5d2bcfc6a 100644 --- a/pkgs/development/python-modules/flask-httpauth/default.nix +++ b/pkgs/development/python-modules/flask-httpauth/default.nix @@ -1,23 +1,23 @@ { lib -, python , buildPythonPackage , fetchPypi , pytestCheckHook , setuptools , flask +, pythonOlder }: buildPythonPackage rec { pname = "flask-httpauth"; - version = "4.7.0"; + version = "4.8.0"; format = "pyproject"; - disabled = python.pythonOlder "3"; + disabled = pythonOlder "3.7"; src = fetchPypi { pname = "Flask-HTTPAuth"; version = version; - hash = "sha256-9xmee60g1baLPwtivd/KdjfFUIfp0C9gWuJuDeR5/ZQ="; + hash = "sha256-ZlaKBbxzlCxl8eIgGudGKVgW3ACe3YS0gsRMdY11CXo="; }; nativeBuildInputs = [ @@ -39,6 +39,7 @@ buildPythonPackage rec { meta = with lib; { description = "Extension that provides HTTP authentication for Flask routes"; homepage = "https://github.com/miguelgrinberg/Flask-HTTPAuth"; + changelog = "https://github.com/miguelgrinberg/Flask-HTTPAuth/blob/v${version}/CHANGES.md"; license = licenses.mit; maintainers = with maintainers; [ oxzi ]; };