biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / types-futures / default.nix
blob7478d77dc8a791964cceaaa16a1b3eb7803593d5
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5 }:
7 buildPythonPackage rec {
8   pname = "types-futures";
9   version = "3.3.8";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "6fe8ccc2c2af7ef2fdd9bf73eab6d617074f09f30ad7d373510b4043d39c42de";
15   };
17   meta = with lib; {
18     description = "Typing stubs for futures";
19     homepage = "https://github.com/python/typeshed";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ andersk ];
22   };