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

27 lines
646 B
Nix
Raw Normal View History

2019-05-21 00:20:05 +00:00
{ stdenv, fetchPypi, buildPythonPackage, typed-ast, psutil, isPy3k
,mypy_extensions }:
2017-05-11 20:33:34 +00:00
2018-05-25 09:42:34 +00:00
buildPythonPackage rec {
2017-05-11 20:33:34 +00:00
pname = "mypy";
2019-05-21 00:20:05 +00:00
version = "0.701";
2016-07-11 17:35:00 +00:00
# Tests not included in pip package.
doCheck = false;
2017-05-11 20:33:34 +00:00
src = fetchPypi {
inherit pname version;
2019-05-21 00:20:05 +00:00
sha256 = "05479r3gbq17r22hyhxjg49smx5q864pgx8ayy23rsdj4w6z2r2p";
2016-07-11 17:35:00 +00:00
};
2018-05-25 09:42:34 +00:00
disabled = !isPy3k;
2019-05-21 00:20:05 +00:00
propagatedBuildInputs = [ typed-ast psutil mypy_extensions ];
2016-07-12 09:22:24 +00:00
2016-07-11 17:35:00 +00:00
meta = with stdenv.lib; {
description = "Optional static typing for Python";
homepage = "http://www.mypy-lang.org";
license = licenses.mit;
2017-05-11 20:33:34 +00:00
maintainers = with maintainers; [ martingms lnl7 ];
2016-07-11 17:35:00 +00:00
};
}