Merge pull request #307667 from fabaff/anova-wifi-bump

python312Packages.anova-wifi: 0.11.7 -> 0.12.0
This commit is contained in:
Nick Cao 2024-04-29 10:57:50 -04:00 committed by GitHub
commit 37aa5a0cbd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, poetry-core
, aiohttp
, sensor-state-data
, pytestCheckHook
, pytest-asyncio
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
poetry-core,
aiohttp,
sensor-state-data,
pytestCheckHook,
pytest-asyncio,
}:
buildPythonPackage rec {
@ -24,15 +25,13 @@ buildPythonPackage rec {
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace "--cov=anova_wifi --cov-report=term-missing:skip-covered" ""
'';
substituteInPlace pyproject.toml \
--replace-fail "--cov=anova_wifi --cov-report=term-missing:skip-covered" ""
'';
nativeBuildInputs = [
poetry-core
];
build-system = [ poetry-core ];
propagatedBuildInputs = [
dependencies = [
aiohttp
sensor-state-data
];