python311Packages.pywemo: 0.9.2 -> 1.0.0

Changelog: https://github.com/pywemo/pywemo/releases/tag/1.0.0
This commit is contained in:
Fabian Affolter 2023-06-18 16:52:22 +02:00
parent 8fe6cacd95
commit a9f25221a9

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, hypothesis
, ifaddr
, lxml
, poetry-core
@ -13,7 +14,7 @@
buildPythonPackage rec {
pname = "pywemo";
version = "0.9.2";
version = "1.0.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -22,7 +23,7 @@ buildPythonPackage rec {
owner = pname;
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-mrLZ8W7imM/ysJhd4OcqZFzx2z/KG8k5bOPFb4ldYzE=";
hash = "sha256-Ffq291AXRQTp8GpkmpEqj0qh4spNWza5Cqc7wsqQbD0=";
};
nativeBuildInputs = [
@ -37,6 +38,7 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
hypothesis
pytest-vcr
pytestCheckHook
];