summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/types-futures/default.nix
blob: 69222b47b53c6641c8838628d2891f816bfaa6a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  buildPythonPackage,
  fetchPypi,
  lib,
}:

buildPythonPackage rec {
  pname = "types-futures";
  version = "3.3.8";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6fe8ccc2c2af7ef2fdd9bf73eab6d617074f09f30ad7d373510b4043d39c42de";
  };

  meta = {
    description = "Typing stubs for futures";
    homepage = "https://github.com/python/typeshed";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ andersk ];
  };
}