Merge pull request #273095 from fabaff/plugwise-bump

python311Packages.plugwise: 0.35.4 -> 0.36.2
This commit is contained in:
Fabian Affolter
2024-01-01 19:58:18 +01:00
committed by GitHub
@@ -14,24 +14,35 @@
, pytestCheckHook
, python-dateutil
, pythonOlder
, pytz
, semver
, setuptools
, wheel
}:
buildPythonPackage rec {
pname = "plugwise";
version = "0.35.4";
format = "setuptools";
version = "0.36.2";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = pname;
owner = "plugwise";
repo = "python-plugwise";
rev = "refs/tags/v${version}";
hash = "sha256-5clHLE8QavccxAhBEa6W2yOtWYmQ5oa9ZcctEIKXru4=";
hash = "sha256-3TTrfvhTQIhig0QUP56+IkciiboXZD4025FvotAZgzo=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace "wheel~=0.40.0" "wheel"
'';
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
aiohttp
async-timeout
@@ -40,7 +51,6 @@ buildPythonPackage rec {
munch
pyserial
python-dateutil
pytz
semver
];