mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
36 lines
797 B
Nix
36 lines
797 B
Nix
{ stdenv, fetchPypi, buildPythonPackage, typed-ast, psutil, isPy3k
|
|
, mypy-extensions
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mypy";
|
|
version = "0.782";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "030kn709515452n6gy2i1d9fg6fyrkmdz228lfpmbslybsld9xzg";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|