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 fetchFromGitHub, 5 poetry-core, 6 pytest-asyncio, 7 - pythonOlder, 8 pytestCheckHook, 9 }: 10 ··· 13 version = "0.1.1"; 14 pyproject = true; 15 16 - disabled = pythonOlder "3.8"; 17 - 18 src = fetchFromGitHub { 19 owner = "bdraco"; 20 repo = "uart-devices"; ··· 22 hash = "sha256-vBwQXeXw9y7eETtlC4dcqGytIgrAm7iomnvoaxhl6JI="; 23 }; 24 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 ]; 31 32 nativeCheckInputs = [ 33 pytest-asyncio 34 pytestCheckHook 35 ]; 36
··· 4 fetchFromGitHub, 5 poetry-core, 6 pytest-asyncio, 7 + pytest-cov-stub, 8 pytestCheckHook, 9 }: 10 ··· 13 version = "0.1.1"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "bdraco"; 18 repo = "uart-devices"; ··· 20 hash = "sha256-vBwQXeXw9y7eETtlC4dcqGytIgrAm7iomnvoaxhl6JI="; 21 }; 22 23 + build-system = [ poetry-core ]; 24 25 nativeCheckInputs = [ 26 pytest-asyncio 27 + pytest-cov-stub 28 pytestCheckHook 29 ]; 30