Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python313Packages.sensor-state-data: migrate to pytest-cov-stub

+5 -6
+5 -6
pkgs/development/python-modules/sensor-state-data/default.nix
··· 4 4 fetchFromGitHub, 5 5 poetry-core, 6 6 pytestCheckHook, 7 + pytest-cov-stub, 7 8 pythonOlder, 8 9 }: 9 10 ··· 23 24 24 25 nativeBuildInputs = [ poetry-core ]; 25 26 26 - nativeCheckInputs = [ pytestCheckHook ]; 27 - 28 - postPatch = '' 29 - substituteInPlace pyproject.toml \ 30 - --replace " --cov=sensor_state_data --cov-report=term-missing:skip-covered" "" 31 - ''; 27 + nativeCheckInputs = [ 28 + pytestCheckHook 29 + pytest-cov-stub 30 + ]; 32 31 33 32 pythonImportsCheck = [ "sensor_state_data" ]; 34 33