Merge pull request #41061 from Mic92/python-language-server

python.pkgs.python-language-server: init at 0.18.0
This commit is contained in:
Jörg Thalheim
2018-05-25 11:27:05 +01:00
committed by GitHub
9 changed files with 139 additions and 9 deletions

View File

@@ -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 ];
};
}