diff options
author | Martin Weinelt | 2024-07-07 11:52:13 +0200 |
---|---|---|
committer | Martin Weinelt | 2024-07-18 18:54:10 +0200 |
commit | 3d126112328fe692fa0963c555ea7ef1494bd791 (patch) | |
tree | 0e5af1ce336a0431c8d13d8d62ceac227e44100c /pkgs/by-name/au | |
parent | 8f3b38daf25cca9a0c49137da5327cee8bb8474b (diff) |
python312Packages.typer: include standard optional
Typer specifies the standard optional-dependencies package list, but then due to internal tooling includes it by default in Require-Dist. https://github.com/tiangolo/typer/blob/0.12.3/pyproject.toml#L71-L72 This is in line with changes that happened in typer 0.12.1 https://github.com/tiangolo/typer/releases/tag/0.12.1
Diffstat (limited to 'pkgs/by-name/au')
-rw-r--r-- | pkgs/by-name/au/audiness/package.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/by-name/au/audiness/package.nix b/pkgs/by-name/au/audiness/package.nix index 8ad9d6397341..d7cff9d14e4b 100644 --- a/pkgs/by-name/au/audiness/package.nix +++ b/pkgs/by-name/au/audiness/package.nix @@ -30,8 +30,7 @@ python3.pkgs.buildPythonApplication rec { pytenable typer validators - ] - ++ typer.optional-dependencies.all; + ]; pythonImportsCheck = [ "audiness" ]; |