Merge pull request #238437 from fabaff/pywemo-bump

python311Packages.pywemo: 0.9.2 -> 1.0.0
This commit is contained in:
Fabian Affolter 2023-06-19 14:59:07 +02:00 committed by GitHub
commit b31266bfed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
];