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

26 lines
636 B
Nix
Raw Normal View History

2018-05-25 10:42:34 +01:00
{ stdenv, fetchPypi, buildPythonPackage, lxml, typed-ast, psutil, isPy3k }:
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";
2018-07-22 11:13:41 +01:00
version = "0.620";
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;
2018-07-22 11:13:41 +01:00
sha256 = "c770605a579fdd4a014e9f0a34b6c7a36ce69b08100ff728e96e27445cef3b3c";
2016-07-11 18:35:00 +01:00
};
2018-05-25 10:42:34 +01:00
disabled = !isPy3k;
2018-01-27 11:21:49 +00:00
propagatedBuildInputs = [ lxml typed-ast psutil ];
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
};
}