python311Packages.pygitguardian: relax marshmallow-dataclass constraint

This commit is contained in:
Fabian Affolter 2024-01-17 19:42:04 +01:00
parent b8b2a1737d
commit 5419ff5c8e

View File

@ -5,6 +5,7 @@
, marshmallow-dataclass , marshmallow-dataclass
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, pythonRelaxDepsHook
, requests , requests
, responses , responses
, setuptools , setuptools
@ -26,7 +27,12 @@ buildPythonPackage rec {
hash = "sha256-ybl6QOLb1xE6v0D1C2wKMsSU+r2gWzj24Q4pPIMBsCY="; hash = "sha256-ybl6QOLb1xE6v0D1C2wKMsSU+r2gWzj24Q4pPIMBsCY=";
}; };
pythonRelaxDeps = [
"marshmallow-dataclass"
];
nativeBuildInputs = [ nativeBuildInputs = [
pythonRelaxDepsHook
setuptools setuptools
]; ];