about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAndreas Zweili <Nebucatnetzer@users.noreply.github.com>2024-05-26 23:24:41 +0200
committerGitHub <noreply@github.com>2024-05-26 21:24:41 +0000
commita8dfb82cb40ee7661abd0ac2f73b8c376dedd496 (patch)
treebc4a931e7c98587dd7d165b173a7dcaa94bdbf77 /pkgs
parent69b7f701f9e9c994e5cb58fe705ffcd90ab30542 (diff)
okonomiyaki: Mark as broken on Python 3.12 (#314561)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/okonomiyaki/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/okonomiyaki/default.nix b/pkgs/development/python-modules/okonomiyaki/default.nix
index d68f9d5b92831..5845857ea1650 100644
--- a/pkgs/development/python-modules/okonomiyaki/default.nix
+++ b/pkgs/development/python-modules/okonomiyaki/default.nix
@@ -12,6 +12,7 @@
   mock,
   packaging,
   testfixtures,
+  pythonAtLeast,
 }:
 
 buildPythonPackage rec {
@@ -58,5 +59,6 @@ buildPythonPackage rec {
     description = "An experimental library aimed at consolidating a lot of low-level code used for Enthought's eggs";
     maintainers = with maintainers; [ genericnerdyusername ];
     license = licenses.bsd3;
+    broken = pythonAtLeast "3.12"; # multiple tests are failing
   };
 }