python312Packages.vehicle: refactor (#364466)

This commit is contained in:
Nick Cao
2024-12-12 09:40:19 -05:00
committed by GitHub
@@ -8,6 +8,7 @@
orjson,
poetry-core,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
syrupy,
@@ -17,7 +18,7 @@
buildPythonPackage rec {
pname = "vehicle";
version = "2.2.2";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.11";
@@ -32,12 +33,11 @@ buildPythonPackage rec {
# Upstream doesn't set a version for the pyproject.toml
substituteInPlace pyproject.toml \
--replace "0.0.0" "${version}" \
--replace "--cov" ""
'';
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
propagatedBuildInputs = [
dependencies = [
aiohttp
mashumaro
orjson
@@ -47,6 +47,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
aresponses
pytest-asyncio
pytest-cov-stub
pytestCheckHook
syrupy
];