From f61bcfebb7a04feb9229090f96fffca54a87cd36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 25 Aug 2024 19:14:16 -0700 Subject: [PATCH] python312Packages.plugwise: 1.1.0 -> 1.2.0 Diff: https://github.com/plugwise/python-plugwise/compare/refs/tags/v1.1.0...v1.2.0 Changelog: https://github.com/plugwise/python-plugwise/releases/tag/v1.2.0 --- .../python-modules/plugwise/default.nix | 24 ++++--------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/pkgs/development/python-modules/plugwise/default.nix b/pkgs/development/python-modules/plugwise/default.nix index 7fddf000ddb3..3a411be77e09 100644 --- a/pkgs/development/python-modules/plugwise/default.nix +++ b/pkgs/development/python-modules/plugwise/default.nix @@ -1,28 +1,23 @@ { lib, aiohttp, - async-timeout, buildPythonPackage, - crcmod, defusedxml, fetchFromGitHub, freezegun, jsonpickle, munch, - pyserial, pytest-aiohttp, pytest-asyncio, pytestCheckHook, python-dateutil, pythonOlder, - semver, setuptools, - wheel, }: buildPythonPackage rec { pname = "plugwise"; - version = "1.1.0"; + version = "1.2.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -31,30 +26,21 @@ buildPythonPackage rec { owner = "plugwise"; repo = "python-plugwise"; rev = "refs/tags/v${version}"; - hash = "sha256-IaLXCuope/6shF3HmKAo7IrXxVJLzAQzsqlx0dASllk="; + hash = "sha256-I9GCFPgTSHquRxvXS0R22q7lxdhKRC76kALIx4hFAAM="; }; postPatch = '' - # setuptools - sed -i -e "s/~=[0-9.]*//" pyproject.toml - # wheel - sed -i -e "s/~=[0-9.]*//" pyproject.toml + # setuptools and wheel + sed -i -e "s/~=[0-9.]*//g" pyproject.toml ''; - build-system = [ - setuptools - wheel - ]; + build-system = [ setuptools ]; dependencies = [ aiohttp - async-timeout - crcmod defusedxml munch - pyserial python-dateutil - semver ]; nativeCheckInputs = [