Commit 6c8cf1e3 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.types-retry: init at 0.9.9

parent 8a5f715b
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "types-retry";
  version = "0.9.9";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-sQh7J0aAtULHllSehIiJjQsizYmYjvEBbvVtQ2f/T0E=";
  };

  # Modules doesn't have tests
  doCheck = false;

  pythonImportsCheck = [
    "retry-stubs"
  ];

  meta = with lib; {
    description = "Typing stubs for retry";
    homepage = "https://github.com/python/typeshed";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11380,6 +11380,8 @@ in {

  types-redis = callPackage ../development/python-modules/types-redis { };

  types-retry = callPackage ../development/python-modules/types-retry { };

  types-requests = callPackage ../development/python-modules/types-requests { };

  types-setuptools = callPackage ../development/python-modules/types-setuptools { };