lol

python313Packages.openshift: migrate to pythonRelaxDepsHook

+3 -6
+3 -6
pkgs/development/python-modules/openshift/default.nix
··· 8 8 six, 9 9 python-string-utils, 10 10 pytest-bdd, 11 + pytest-cov-stub, 11 12 pytestCheckHook, 12 13 }: 13 14 ··· 23 24 hash = "sha256-uLfewj7M8KNs3oL1AM18sR/WhAR2mvBfqadyhR73FP0="; 24 25 }; 25 26 26 - postPatch = '' 27 - substituteInPlace requirements.txt \ 28 - --replace "kubernetes ~= 12.0" "kubernetes" 29 - 30 - sed -i '/--cov/d' setup.cfg 31 - ''; 27 + pythonRelaxDeps = [ "kubernetes" ]; 32 28 33 29 propagatedBuildInputs = [ 34 30 jinja2 ··· 42 38 43 39 nativeCheckInputs = [ 44 40 pytest-bdd 41 + pytest-cov-stub 45 42 pytestCheckHook 46 43 ]; 47 44