evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / types-s3transfer / default.nix
blobbb2211a43dfb56a99e9978ed5f018b3c26020285
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "types-s3transfer";
11   version = "0.10.2";
12   pyproject = true;
14   disabled = pythonOlder "3.8";
16   src = fetchPypi {
17     pname = "types_s3transfer";
18     inherit version;
19     hash = "sha256-YBZ6O/tcU27GzbWBj3+aKO3KncPgtf+FrjdFJvxeV24=";
20   };
22   build-system = [ setuptools ];
24   # Module has no tests
25   doCheck = false;
27   pythonImportsCheck = [ "s3transfer-stubs" ];
29   meta = with lib; {
30     description = "Type annotations and code completion for s3transfer";
31     homepage = "https://github.com/youtype/types-s3transfer";
32     license = licenses.mit;
33     maintainers = with maintainers; [ fab ];
34   };