From 6ea010d62fd6b38516b63caffefb1d1ec1c389ff Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Mon, 22 Sep 2025 12:43:39 +0200 Subject: [PATCH] python3Packages.arelle.tests.cli: Unhardcode version --- pkgs/development/python-modules/arelle/test-cli.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/arelle/test-cli.nix b/pkgs/development/python-modules/arelle/test-cli.nix index 17a0ebc0b6ce..90b1572015a7 100644 --- a/pkgs/development/python-modules/arelle/test-cli.nix +++ b/pkgs/development/python-modules/arelle/test-cli.nix @@ -18,7 +18,7 @@ runCommand "arelle-test-cli${lib.optionalString (!arelle.hasGUI) "-headless"}" export HOME=$(mktemp -d) # Test basic CLI commands work with proper assertions - arelleCmdLine --version --disablePersistentConfig 2>&1 | grep "Arelle(r) 2.37.59" > /dev/null + arelleCmdLine --version --disablePersistentConfig 2>&1 | grep "Arelle(r) ${arelle.version}" > /dev/null arelleCmdLine --help --disablePersistentConfig 2>&1 | grep "Usage: arelleCmdLine \[options\]" > /dev/null arelleCmdLine --about --disablePersistentConfig 2>&1 | grep "An open source XBRL platform" > /dev/null