Merge pull request #279634 from Net-Mist/fix-pylsp-mypy

python311Package.pylsp-mypy: fix build

authored by Nick Cao and committed by GitHub dfbae786 10b01dcc

-11
-11
pkgs/development/python-modules/pylsp-mypy/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , setuptools 6 5 , mypy 7 6 , pytestCheckHook ··· 24 23 hash = "sha256-oEWUXkE8U7/ye6puJZRSkQFi10BPGuc8XZQbHwqOPEI="; 25 24 }; 26 25 27 - patches = [ 28 - # https://github.com/python-lsp/pylsp-mypy/pull/64 29 - (fetchpatch { 30 - name = "fix-hanging-test.patch"; 31 - url = "https://github.com/python-lsp/pylsp-mypy/commit/90d28edb474135007804f1e041f88713a95736f9.patch"; 32 - hash = "sha256-3DVyUXVImRemXCuyoXlYbPJm6p8OnhBdEKmwjx88ets="; 33 - }) 34 - ]; 35 - 36 26 nativeBuildInputs = [ 37 27 setuptools 38 28 ]; ··· 40 30 propagatedBuildInputs = [ 41 31 mypy 42 32 python-lsp-server 43 - ] ++ lib.optionals (pythonOlder "3.11") [ 44 33 tomli 45 34 ]; 46 35