python313Packages.uart-devices: 0.1.0 -> 0.1.1 (#408764)

authored by

dotlambda and committed by
GitHub
aabe3af0 cbae5517

+3 -9
+3 -9
pkgs/development/python-modules/uart-devices/default.nix
··· 4 4 fetchFromGitHub, 5 5 poetry-core, 6 6 pytest-asyncio, 7 - pythonOlder, 7 + pytest-cov-stub, 8 8 pytestCheckHook, 9 9 }: 10 10 ··· 13 13 version = "0.1.1"; 14 14 pyproject = true; 15 15 16 - disabled = pythonOlder "3.8"; 17 - 18 16 src = fetchFromGitHub { 19 17 owner = "bdraco"; 20 18 repo = "uart-devices"; ··· 22 20 hash = "sha256-vBwQXeXw9y7eETtlC4dcqGytIgrAm7iomnvoaxhl6JI="; 23 21 }; 24 22 25 - postPatch = '' 26 - substituteInPlace pyproject.toml \ 27 - --replace-fail "-Wdefault --cov=uart_devices --cov-report=term-missing:skip-covered" "" 28 - ''; 29 - 30 - nativeBuildInputs = [ poetry-core ]; 23 + build-system = [ poetry-core ]; 31 24 32 25 nativeCheckInputs = [ 33 26 pytest-asyncio 27 + pytest-cov-stub 34 28 pytestCheckHook 35 29 ]; 36 30