summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-08-16 16:59:56 +0200
committerGitHub <noreply@github.com>2021-08-16 16:59:56 +0200
commitd24ebde667ab885de4f6cd81bd4f2916f8621f9c (patch)
tree5dc69de8a6aeab1465f071c3e5dc1c2cf9627396
parent62c940ad1f17712475335591dd5e510a39ca85fc (diff)
parent40b2d9c84d6505899de0d1ab84a160ddb95c6313 (diff)
downloadnixpkgs-d24ebde667ab885de4f6cd81bd4f2916f8621f9c.tar
nixpkgs-d24ebde667ab885de4f6cd81bd4f2916f8621f9c.tar.gz
nixpkgs-d24ebde667ab885de4f6cd81bd4f2916f8621f9c.tar.bz2
nixpkgs-d24ebde667ab885de4f6cd81bd4f2916f8621f9c.tar.lz
nixpkgs-d24ebde667ab885de4f6cd81bd4f2916f8621f9c.tar.xz
nixpkgs-d24ebde667ab885de4f6cd81bd4f2916f8621f9c.tar.zst
nixpkgs-d24ebde667ab885de4f6cd81bd4f2916f8621f9c.zip
Merge pull request #134330 from Mic92/typer
-rw-r--r--pkgs/development/python-modules/typer/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/typer/default.nix b/pkgs/development/python-modules/typer/default.nix
index 5b7b17c8bb8..620ec7ce689 100644
--- a/pkgs/development/python-modules/typer/default.nix
+++ b/pkgs/development/python-modules/typer/default.nix
@@ -44,6 +44,9 @@ buildPythonPackage rec {
     homepage = "https://typer.tiangolo.com/";
     description = "Typer, build great CLIs. Easy to code. Based on Python type hints.";
     license = licenses.mit;
+    # is incompatible with click8
+    # https://github.com/tiangolo/typer/issues/280
+    broken = true;
     maintainers = [ maintainers.winpat ];
   };
 }