summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pycardano/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pycardano/default.nix')
-rw-r--r--pkgs/development/python-modules/pycardano/default.nix11
1 files 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 ];
};
}