python3Packages.types-futures: init at 3.3.0

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg 2021-09-16 15:26:30 -07:00 committed by Jonathan Ringer
parent e8abdabe5f
commit ce180d22e2
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "types-futures";
version = "3.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "1p00wb93af01b6fw9wxk9qm4kbhqwb48nszmm16slsrc1nx4px25";
};
meta = with lib; {
description = "Typing stubs for futures";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ andersk ];
};
}

View File

@ -9133,6 +9133,8 @@ in {
types-decorator = callPackage ../development/python-modules/types-decorator { };
types-futures = callPackage ../development/python-modules/types-futures { };
types-pytz = callPackage ../development/python-modules/types-pytz { };
types-requests = callPackage ../development/python-modules/types-requests { };