From c3acd5ddf44734dee14cb9a342bd9ae8b6273a65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sat, 17 Jan 2026 16:52:11 +0100 Subject: [PATCH] python3Packages.pythonfinder: remove superfluous pythonOlder --- pkgs/development/python-modules/pythonfinder/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pythonfinder/default.nix b/pkgs/development/python-modules/pythonfinder/default.nix index 615b2fc3379b..9fcec324a51c 100644 --- a/pkgs/development/python-modules/pythonfinder/default.nix +++ b/pkgs/development/python-modules/pythonfinder/default.nix @@ -1,14 +1,12 @@ { lib, buildPythonPackage, - cached-property, click, fetchFromGitHub, packaging, pytest-cov-stub, pytest-timeout, pytestCheckHook, - pythonOlder, setuptools, }: @@ -26,7 +24,7 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools ]; - propagatedBuildInputs = [ packaging ] ++ lib.optionals (pythonOlder "3.8") [ cached-property ]; + propagatedBuildInputs = [ packaging ]; optional-dependencies = { cli = [ click ];