2019-05-21 01:20:05 +01:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, typed-ast, psutil, isPy3k
|
2019-10-24 08:56:26 +01:00
|
|
|
, mypy-extensions
|
|
|
|
, typing-extensions
|
|
|
|
}:
|
2017-05-11 21:33:34 +01:00
|
|
|
|
2018-05-25 10:42:34 +01:00
|
|
|
buildPythonPackage rec {
|
2017-05-11 21:33:34 +01:00
|
|
|
pname = "mypy";
|
2020-03-21 12:54:38 +00:00
|
|
|
version = "0.770";
|
2019-12-16 02:56:06 +00:00
|
|
|
disabled = !isPy3k;
|
2016-07-11 18:35:00 +01:00
|
|
|
|
2017-05-11 21:33:34 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-03-21 12:54:38 +00:00
|
|
|
sha256 = "1bm40nx9g1n4nj1309cijnh0ns4qbhym3agyl537nc4vxw3paqla";
|
2016-07-11 18:35:00 +01:00
|
|
|
};
|
|
|
|
|
2019-10-24 08:56:26 +01:00
|
|
|
propagatedBuildInputs = [ typed-ast psutil mypy-extensions typing-extensions ];
|
2016-07-12 10:22:24 +01:00
|
|
|
|
2019-12-16 02:56:06 +00:00
|
|
|
# Tests not included in pip package.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"mypy"
|
|
|
|
"mypy.types"
|
|
|
|
"mypy.api"
|
|
|
|
"mypy.fastparse"
|
|
|
|
"mypy.report"
|
|
|
|
];
|
|
|
|
|
2016-07-11 18:35:00 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Optional static typing for Python";
|
|
|
|
homepage = "http://www.mypy-lang.org";
|
|
|
|
license = licenses.mit;
|
2017-05-11 21:33:34 +01:00
|
|
|
maintainers = with maintainers; [ martingms lnl7 ];
|
2016-07-11 18:35:00 +01:00
|
|
|
};
|
|
|
|
}
|