about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/types-futures/default.nix
blob: 5e9ebe7fa7fd3be8b5c71582c7c01c1e9881ee54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ];
  };
}