summary refs log tree commit diff
path: root/pkgs/development/python-modules/types-futures/default.nix
blob: afff438efef1f62680927f93c6d2b4226abc59a1 (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.8";

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

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