Commit ab7f0261 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.mypy-boto3-ebs: init at 1.26.0

parent b7a9deb5
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{ lib
, boto3
, buildPythonPackage
, fetchPypi
, pythonOlder
, typing-extensions
}:

buildPythonPackage rec {
  pname = "mypy-boto3-ebs";
  version = "1.26.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-w15SM5F1IFtX4qDrMv5B7PItaTnXOOABg0aUU24onBk=";
  };

  propagatedBuildInputs = [
    boto3
    typing-extensions
  ];

  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [
    "mypy_boto3_ebs"
  ];

  meta = with lib; {
    description = "Type annotations for boto3.s3";
    homepage = "https://github.com/youtype/mypy_boto3_builder";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -6483,6 +6483,8 @@ self: super: with self; {

  mypy-boto3-builder = callPackage ../development/python-modules/mypy-boto3-builder { };

  mypy-boto3-ebs = callPackage ../development/python-modules/mypy-boto3-ebs { };

  mypy-boto3-s3 = callPackage ../development/python-modules/mypy-boto3-s3 { };

  mypy-extensions = callPackage ../development/python-modules/mypy/extensions.nix { };