python312Packages.aioopenexchangerates: refactor

This commit is contained in:
Fabian Affolter 2024-04-04 01:30:50 +02:00
parent ef46c920b5
commit 775475671f

View File

@ -27,19 +27,22 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=aioopenexchangerates --cov-report=term-missing:skip-covered" ""
--replace-fail " --cov=aioopenexchangerates --cov-report=term-missing:skip-covered" ""
'';
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"pydantic"
];
propagatedBuildInputs = [
build-system = [
poetry-core
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
dependencies = [
aiohttp
pydantic
];