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

27 lines
669 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, lxml, 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-02-14 07:37:21 +00:00
version = "0.670";
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-02-14 07:37:21 +00:00
sha256 = "e80fd6af34614a0e898a57f14296d0dacb584648f0339c2e000ddbf0f4cc2f8d";
2016-07-11 17:35:00 +00:00
};
2018-05-25 09:42:34 +00:00
disabled = !isPy3k;
propagatedBuildInputs = [ lxml 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
};
}