nixpkgs/pkgs/development/python-modules/mypy/default.nix
Samuel Dionne-Riel 776b55518a Revert "mypy: 0.761 -> 0.770"
This reverts commit e7c3e277b6.

See https://github.com/NixOS/nixpkgs/issues/83458

This currently blocks the channel.
2020-03-26 20:50:32 -04:00

36 lines
797 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, typed-ast, psutil, isPy3k
, mypy-extensions
, typing-extensions
}:
buildPythonPackage rec {
pname = "mypy";
version = "0.761";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1gw7h84d21wmi267kmgqs9whz0l7rp62pzja2f31wq7cfj6spfl5";
};
propagatedBuildInputs = [ typed-ast psutil mypy-extensions typing-extensions ];
# Tests not included in pip package.
doCheck = false;
pythonImportsCheck = [
"mypy"
"mypy.types"
"mypy.api"
"mypy.fastparse"
"mypy.report"
];
meta = with stdenv.lib; {
description = "Optional static typing for Python";
homepage = "http://www.mypy-lang.org";
license = licenses.mit;
maintainers = with maintainers; [ martingms lnl7 ];
};
}