From f24e6920409f24daee6b3a42cb9e2d463e01f594 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 9 Aug 2023 11:37:16 +0200 Subject: [PATCH] python310Packages.hyperpyyaml: mark broken --- pkgs/development/python-modules/hyperpyyaml/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/hyperpyyaml/default.nix b/pkgs/development/python-modules/hyperpyyaml/default.nix index d66d16dc42f3..4e59a0ce771b 100644 --- a/pkgs/development/python-modules/hyperpyyaml/default.nix +++ b/pkgs/development/python-modules/hyperpyyaml/default.nix @@ -1,9 +1,9 @@ -{ buildPythonPackage +{ lib +, buildPythonPackage , fetchFromGitHub -, lib -, pytestCheckHook , pyyaml , ruamel-yaml +, pytestCheckHook }: buildPythonPackage rec { @@ -35,5 +35,7 @@ buildPythonPackage rec { changelog = "https://github.com/speechbrain/HyperPyYAML/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ GaetanLepage ]; + # hyperpyyaml is not compatible with the too new version of `ruaml-yaml` + broken = true; }; }