diff options
Diffstat (limited to 'pkgs/development/python-modules/pylsp-mypy/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/pylsp-mypy/default.nix | 31 |
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pylsp-mypy/default.nix b/pkgs/development/python-modules/pylsp-mypy/default.nix index e93e24406341..3f787714bb33 100644 --- a/pkgs/development/python-modules/pylsp-mypy/default.nix +++ b/pkgs/development/python-modules/pylsp-mypy/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, setuptools -, mypy -, pytestCheckHook -, python-lsp-server -, pythonOlder -, tomli +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + mypy, + pytestCheckHook, + python-lsp-server, + pythonOlder, + tomli, }: buildPythonPackage rec { @@ -23,9 +24,7 @@ buildPythonPackage rec { hash = "sha256-oEWUXkE8U7/ye6puJZRSkQFi10BPGuc8XZQbHwqOPEI="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ mypy @@ -33,13 +32,9 @@ buildPythonPackage rec { tomli ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "pylsp_mypy" - ]; + pythonImportsCheck = [ "pylsp_mypy" ]; disabledTests = [ # Tests wants to call dmypy |
