Merge pull request #41061 from Mic92/python-language-server
python.pkgs.python-language-server: init at 0.18.0
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
{ stdenv, fetchPypi, buildPythonApplication, lxml, typed-ast, psutil }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "mypy";
|
||||
version = "0.600";
|
||||
|
||||
# Tests not included in pip package.
|
||||
doCheck = false;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1pd3kkz435wlvi9fwqbi3xag5zs59jcjqi6c9gzdjdn23friq9dw";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ lxml typed-ast psutil ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Optional static typing for Python";
|
||||
homepage = "http://www.mypy-lang.org";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ martingms lnl7 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user