From 09137a7ba7cc73972738b02da0f687f537665934 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Sun, 6 Apr 2025 22:48:58 -0400 Subject: [PATCH] python312Packages.pycardano: fix build It pinned `ogmios` that was bumped recently. Signed-off-by: Ihar Hrachyshka --- pkgs/development/python-modules/pycardano/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pycardano/default.nix b/pkgs/development/python-modules/pycardano/default.nix index d06543c29d56..e5f164e9fe92 100644 --- a/pkgs/development/python-modules/pycardano/default.nix +++ b/pkgs/development/python-modules/pycardano/default.nix @@ -76,14 +76,17 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonRelaxDeps = [ "websockets" ]; + pythonRelaxDeps = [ + "ogmios" + "websockets" + ]; pythonImportsCheck = [ "pycardano" ]; - meta = with lib; { + meta = { description = "Lightweight Cardano library in Python"; homepage = "https://github.com/Python-Cardano/pycardano"; - license = licenses.mit; - maintainers = with maintainers; [ t4ccer ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ t4ccer ]; }; }