ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mypy-boto3-s3 / default.nix
blob1c48a6afae7769eacefcced10824fb974d4fc762
1 { lib
2 , boto3
3 , buildPythonPackage
4 , fetchPypi
5 , pythonOlder
6 , typing-extensions
7 }:
9 buildPythonPackage rec {
10   pname = "mypy-boto3-s3";
11   version = "1.25.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-aJd/dEzjucQgiEZ/9m4z55HKPyew3FXztVApjwPqGm8=";
19   };
21   propagatedBuildInputs = [
22     boto3
23     typing-extensions
24   ];
26   # Project has no tests
27   doCheck = false;
29   pythonImportsCheck = [
30     "mypy_boto3_s3"
31   ];
33   meta = with lib; {
34     description = "Type annotations for boto3";
35     homepage = "https://vemel.github.io/boto3_stubs_docs/mypy_boto3_s3/";
36     license = with licenses; [ bsd3 ];
37     maintainers = with maintainers; [ fab ];
38   };