diff --git a/pkgs/development/python-modules/pylsp-mypy/default.nix b/pkgs/development/python-modules/pylsp-mypy/default.nix index 718a64b28f0b..a2504e4bbc9d 100644 --- a/pkgs/development/python-modules/pylsp-mypy/default.nix +++ b/pkgs/development/python-modules/pylsp-mypy/default.nix @@ -1,39 +1,49 @@ { lib , buildPythonPackage , fetchFromGitHub -, mock , mypy , pytestCheckHook , python-lsp-server , pythonOlder +, toml }: buildPythonPackage rec { pname = "pylsp-mypy"; version = "0.6.3"; - disabled = pythonOlder "3.6"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "Richardk2n"; repo = "pylsp-mypy"; rev = "refs/tags/${version}"; - sha256 = "sha256-fZ2bPPjBK/H2jMI4S3EhvWJaNl4tK7HstxcHSAkoFW4="; + hash = "sha256-fZ2bPPjBK/H2jMI4S3EhvWJaNl4tK7HstxcHSAkoFW4="; }; + propagatedBuildInputs = [ + mypy + python-lsp-server + toml + ]; + + checkInputs = [ + pytestCheckHook + ]; + + pythonImportsCheck = [ + "pylsp_mypy" + ]; + disabledTests = [ - "test_multiple_workspaces" + # Tests wants to call dmypy "test_option_overrides_dmypy" ]; - checkInputs = [ pytestCheckHook mock ]; - - propagatedBuildInputs = [ mypy python-lsp-server ]; - - pythonImportsCheck = [ "pylsp_mypy" ]; - meta = with lib; { - homepage = "https://github.com/Richardk2n/pylsp-mypy"; description = "Mypy plugin for the Python LSP Server"; + homepage = "https://github.com/Richardk2n/pylsp-mypy"; license = licenses.mit; maintainers = with maintainers; [ cpcloud ]; };