nixpkgs/pkgs/development/python-modules/mypy/default.nix

29 lines
697 B
Nix
Raw Normal View History

2019-05-21 01:20:05 +01:00
{ stdenv, fetchPypi, buildPythonPackage, typed-ast, psutil, isPy3k
, 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";
2019-10-24 07:47:39 +01:00
version = "0.740";
2016-07-11 18:35:00 +01:00
# Tests not included in pip package.
doCheck = false;
2017-05-11 21:33:34 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:39 +01:00
sha256 = "48c8bc99380575deb39f5d3400ebb6a8a1cb5cc669bbba4d3bb30f904e0a0e7d";
2016-07-11 18:35:00 +01:00
};
2018-05-25 10:42:34 +01:00
disabled = !isPy3k;
propagatedBuildInputs = [ typed-ast psutil mypy-extensions typing-extensions ];
2016-07-12 10:22:24 +01:00
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
};
}