about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mypy/extensions.nix
blob: f57ac12c0da8eeb66003630f183ab673f8449708 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchPypi, buildPythonPackage, typing, isPy3k }:

buildPythonPackage rec {
  pname = "mypy_extensions";
  version = "0.4.1";

  # Tests not included in pip package.
  doCheck = false;

  src = fetchPypi {
    inherit pname version;
    sha256 = "04h8brrbbx151dfa2cvvlnxgmb5wa00mhd2z7nd20s8kyibfkq1p";
  };

  propagatedBuildInputs = [ typing ];

  meta = with stdenv.lib; {
    description = "Experimental type system extensions for programs checked with the mypy typechecker";
    homepage    = "http://www.mypy-lang.org";
    license     = licenses.mit;
    maintainers = with maintainers; [ martingms lnl7 ];
  };
}