Merge pull request #255901 from gador/flask-migrate-4.0.5

python3Packages.flask-migrate: 4.0.4 -> 4.0.5
This commit is contained in:
Fabian Affolter 2023-09-18 18:28:01 +02:00 committed by GitHub
commit 1774d07242
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 = [