python3Packages.mypy: 0.740 -> 0.750

Also refactored expression to follow ordering of most other python packages
This commit is contained in:
Jonathan Ringer 2019-12-15 18:56:06 -08:00 committed by Jon
parent aed6f881b0
commit 0c3cfd5c07

View File

@ -5,19 +5,26 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "mypy"; pname = "mypy";
version = "0.740"; version = "0.750";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0k0l74g3jcq7ppzn234sffsaacn6qaq242famckk0cviwgld1jvf";
};
propagatedBuildInputs = [ typed-ast psutil mypy-extensions typing-extensions ];
# Tests not included in pip package. # Tests not included in pip package.
doCheck = false; doCheck = false;
src = fetchPypi { pythonImportsCheck = [
inherit pname version; "mypy"
sha256 = "48c8bc99380575deb39f5d3400ebb6a8a1cb5cc669bbba4d3bb30f904e0a0e7d"; "mypy.types"
}; "mypy.api"
"mypy.fastparse"
disabled = !isPy3k; "mypy.report"
];
propagatedBuildInputs = [ typed-ast psutil mypy-extensions typing-extensions ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Optional static typing for Python"; description = "Optional static typing for Python";