From 12238b08ef347c3e6118e97daadc6ac05efc48b0 Mon Sep 17 00:00:00 2001 From: Ivan Babrou Date: Thu, 18 Mar 2021 19:38:58 -0700 Subject: [PATCH] pythonPackages.pylint: fix build on darwin The test no longer exists after #112908: ``` Disabled tests path "pylint/test/test_functional.py" does not exist. Aborting ``` --- pkgs/development/python-modules/pylint/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/python-modules/pylint/default.nix b/pkgs/development/python-modules/pylint/default.nix index a7606de3f347..43183482eceb 100644 --- a/pkgs/development/python-modules/pylint/default.nix +++ b/pkgs/development/python-modules/pylint/default.nix @@ -63,8 +63,6 @@ buildPythonPackage rec { "test_py3k_jobs_option" ]; - disabledTestPaths = lib.optional stdenv.isDarwin "pylint/test/test_functional.py"; - meta = with lib; { homepage = "https://pylint.pycqa.org/"; description = "A bug and style checker for Python";