mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
python3Packages.types-futures: init at 3.3.0
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
parent
e8abdabe5f
commit
ce180d22e2
18
pkgs/development/python-modules/types-futures/default.nix
Normal file
18
pkgs/development/python-modules/types-futures/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user