Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / future-typing / default.nix
blob04d4af30e07a475d5b71c7a51612432f374db3ff
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , typing-extensions
6 }:
8 buildPythonPackage rec {
9   pname = "future-typing";
10   version = "0.4.1";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "future_typing";
15     inherit version;
16     sha256 = "65fdc5034a95db212790fee5e977fb0a2df8deb60dccf3bac17d6d2b1a9bbacd";
17   };
19   doCheck = false; # No tests in pypi source. Did not get tests from GitHub source to work.
21   pythonImportsCheck = [ "future_typing" ];
23   meta = with lib; {
24     description = "Use generic type hints and new union syntax `|` with python 3.6+";
25     mainProgram = "future_typing";
26     homepage = "https://github.com/PrettyWood/future-typing";
27     license = licenses.mit;
28     maintainers = with maintainers; [ kfollesdal ];
29   };