Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / types-futures / default.nix
blobafff438efef1f62680927f93c6d2b4226abc59a1
1 { buildPythonPackage, fetchPypi, lib }:
3 buildPythonPackage rec {
4   pname = "types-futures";
5   version = "3.3.8";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "6fe8ccc2c2af7ef2fdd9bf73eab6d617074f09f30ad7d373510b4043d39c42de";
10   };
12   meta = with lib; {
13     description = "Typing stubs for futures";
14     homepage = "https://github.com/python/typeshed";
15     license = licenses.asl20;
16     maintainers = with maintainers; [ andersk ];
17   };