From 2813a59c9d876fba733e1065d052bdbac2929974 Mon Sep 17 00:00:00 2001 From: squalus Date: Fri, 12 Jul 2024 09:51:15 -0700 Subject: [PATCH] pricehist: 1.4.6 -> 1.4.7 - update to 1.4.7 - remove relaxPythonDeps entry that is no longer needed --- pkgs/tools/misc/pricehist/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/pricehist/default.nix b/pkgs/tools/misc/pricehist/default.nix index 6930867cc446..42af498bb858 100644 --- a/pkgs/tools/misc/pricehist/default.nix +++ b/pkgs/tools/misc/pricehist/default.nix @@ -13,14 +13,14 @@ buildPythonApplication rec { pname = "pricehist"; - version = "1.4.6"; + version = "1.4.7"; format = "pyproject"; src = fetchFromGitLab { owner = "chrisberkhout"; repo = "pricehist"; rev = version; - hash = "sha256-RMZKp0JXQLt9tBZPkb3e/au85lV/FkRBCRYzd2lgUPc="; + hash = "sha256-SBRJxNnA+nOxO6h97WZZHwhxoXeNtb5+rDayn4Hw6so="; }; propagatedBuildInputs = [ @@ -40,10 +40,6 @@ buildPythonApplication rec { pytestCheckHook ]; - pythonRelaxDeps = [ - # https://gitlab.com/chrisberkhout/pricehist/-/issues/6 - "lxml" - ]; meta = with lib; { description = "Command-line tool for fetching and formatting historical price data, with support for multiple data sources and output formats"; homepage = "https://gitlab.com/chrisberkhout/pricehist";