diff --git a/pkgs/development/python-modules/mypy-boto3-builder/default.nix b/pkgs/development/python-modules/mypy-boto3-builder/default.nix index dc44c361a9ca..659ca88d0f9a 100644 --- a/pkgs/development/python-modules/mypy-boto3-builder/default.nix +++ b/pkgs/development/python-modules/mypy-boto3-builder/default.nix @@ -12,20 +12,21 @@ , pyparsing , pytestCheckHook , pythonOlder +, setuptools }: buildPythonPackage rec { pname = "mypy-boto3-builder"; - version = "7.5.5"; + version = "7.11.10"; format = "pyproject"; disabled = pythonOlder "3.10"; src = fetchFromGitHub { - owner = "vemel"; + owner = "youtype"; repo = "mypy_boto3_builder"; rev = version; - hash = "sha256-rv0c0QoXOd7aSOLhGDGfq4v0bnGBOJhGhZVNhS5hgOs="; + hash = "sha256-bS56xHrAoYKjwfbz5vh6O41EGDM821z4ZFZfpqc65cE="; }; nativeBuildInputs = [ @@ -41,6 +42,7 @@ buildPythonPackage rec { mdformat newversion pyparsing + setuptools ]; checkInputs = [ @@ -59,6 +61,7 @@ buildPythonPackage rec { meta = with lib; { description = "Type annotations builder for boto3"; homepage = "https://github.com/youtype/mypy_boto3_builder"; + changelog = "https://github.com/youtype/mypy_boto3_builder/releases/tag/${version}"; license = with licenses; [ bsd3 ]; maintainers = with maintainers; [ fab ]; };