python3Packages.pycardano: relax bound on typeguard

This commit is contained in:
t4ccer 2024-02-24 15:01:59 -07:00
parent 502ba8d4f5
commit 9f359348e1
No known key found for this signature in database
GPG Key ID: 19E5A2D8B1E43F19

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonRelaxDepsHook
# Python deps
, blockfrost-python
, cachetools
@ -41,6 +42,10 @@ in buildPythonPackage rec {
hash = "sha256-LP/W8IC2del476fGFq10VMWwMrbAoCCcZOngA8unBM0=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
propagatedBuildInputs = [
blockfrost-python
cachetools
@ -58,6 +63,8 @@ in buildPythonPackage rec {
websocket-client
];
pythonRelaxDeps = [ "typeguard" ];
pythonImportsCheck = [ "pycardano" ];
meta = with lib; {