From 4d3080f78d497721186b35c9f2ea5409258732ae Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 6 Jul 2025 13:34:18 +0200 Subject: [PATCH] python313Packages.socid-extractor: relax beautifulsoup4 --- pkgs/development/python-modules/socid-extractor/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/socid-extractor/default.nix b/pkgs/development/python-modules/socid-extractor/default.nix index 27aca9ff9193..1a326732a196 100644 --- a/pkgs/development/python-modules/socid-extractor/default.nix +++ b/pkgs/development/python-modules/socid-extractor/default.nix @@ -23,6 +23,8 @@ buildPythonPackage rec { hash = "sha256-oiXIxNvedEk+EufYzxhvRr8m+kuQRs0J62Yel5JLenQ="; }; + pythonRelaxDeps = [ "beautifulsoup4" ]; + build-system = [ setuptools ]; dependencies = [ @@ -39,7 +41,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python module to extract details from personal pages"; homepage = "https://github.com/soxoj/socid-extractor"; - changelog = "https://github.com/soxoj/socid-extractor/blob/v${version}/CHANGELOG.md"; + changelog = "https://github.com/soxoj/socid-extractor/blob/v${src.tag}/CHANGELOG.md"; license = licenses.gpl3Only; maintainers = with maintainers; [ fab ]; mainProgram = "socid_extractor";