Merge pull request #247885 from fabaff/hahomematic-bump

python311Packages.hahomematic: 2023.7.3 -> 2023.8.2
This commit is contained in:
Fabian Affolter 2023-08-24 15:01:22 +02:00 committed by GitHub
commit 8f90b41f08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,24 +12,26 @@
, voluptuous
, websocket-client
, xmltodict
, wheel
}:
buildPythonPackage rec {
pname = "hahomematic";
version = "2023.7.0";
version = "2023.8.9";
format = "pyproject";
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "danielperna84";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-5J/arrr8ymODSqtATJZuKsuOsCDKV9P2v8vN6D22FuE=";
hash = "sha256-PQ9KxKyTa9xiLa6suqHRem6Rs732djbjzFKKLZDUM/g=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
@ -45,9 +47,6 @@ buildPythonPackage rec {
pytestCheckHook
];
# Starting with 0.30 the tests are broken, check with the next major release
doCheck = false;
pythonImportsCheck = [
"hahomematic"
];