From eb557de5dd102ebd7c625cd1f41fcaa1c4d31ef4 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Sun, 28 Jan 2024 08:06:21 +0100 Subject: [PATCH] python311Packages.unearth: drop support for python 3.7 Co-authored-by: betaboon --- pkgs/development/python-modules/unearth/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/unearth/default.nix b/pkgs/development/python-modules/unearth/default.nix index a6a3ba4263d1..649e305aeeb3 100644 --- a/pkgs/development/python-modules/unearth/default.nix +++ b/pkgs/development/python-modules/unearth/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { version = "0.14.0"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; @@ -32,8 +32,6 @@ buildPythonPackage rec { propagatedBuildInputs = [ packaging requests - ] ++ lib.optionals (pythonOlder "3.8") [ - cached-property ]; __darwinAllowLocalNetworking = true;