python3Packages.flask-migrate: 4.0.4 -> 4.0.5

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
Florian Brandes 2023-09-18 16:01:52 +02:00
parent 8544b0d65a
commit 7fcb2b07a2
No known key found for this signature in database
GPG key ID: 074048E893713170

View file

@ -12,16 +12,16 @@
buildPythonPackage rec {
pname = "flask-migrate";
version = "4.0.4";
version = "4.0.5";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "Flask-Migrate";
rev = "v${version}";
hash = "sha256-x52LGYvXuTUCP9dR3FP7a/xNRWyCAV1sReDAYJbYDvE=";
hash = "sha256-fdnoX7ypTpH2mQ+7Xuhzdh706Of7PIVhHQGVbe0jv1s=";
};
nativeBuildInputs = [