python312Packages.mypy: 1.10.1 -> 1.11.2 (#336875)

This commit is contained in:
Sandro 2024-09-11 17:48:34 +02:00 committed by GitHub
commit 457fc3f13f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,7 +32,7 @@
buildPythonPackage rec {
pname = "mypy";
version = "1.10.1";
version = "1.11.2";
pyproject = true;
disabled = pythonOlder "3.8";
@ -41,7 +41,7 @@ buildPythonPackage rec {
owner = "python";
repo = "mypy";
rev = "refs/tags/v${version}";
hash = "sha256-joV+elRaAICNQHkYuYtTDjvOUkHPsRkG1OLRvdxeIHc=";
hash = "sha256-5gfqIBtI/G5HARYdXHjYNYNRxeNgrk9dnpSgvMSu9bw=";
};
passthru.updateScript = gitUpdater {
rev-prefix = "v";
@ -131,6 +131,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Optional static typing for Python";
homepage = "https://www.mypy-lang.org";
changelog = "https://github.com/python/mypy/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
mainProgram = "mypy";
maintainers = with maintainers; [ lnl7 ];