nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python313Packages.arelle: disable for now

+3
+3
pkgs/development/python-modules/arelle/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 + pythonAtLeast, 4 5 fetchFromGitHub, 5 6 6 7 setuptools, ··· 47 46 pname = "arelle${lib.optionalString (!gui) "-headless"}"; 48 47 version = "2.30.25"; 49 48 pyproject = true; 49 + 50 + disabled = pythonAtLeast "3.13"; # Note: when updating, check if this is still needed 50 51 51 52 src = fetchFromGitHub { 52 53 owner = "Arelle";