python312Packages.zigpy: 0.63.4 -> 0.63.5

Changelog: https://github.com/zigpy/zigpy/releases/tag/0.63.5
This commit is contained in:
Fabian Affolter 2024-04-02 18:36:50 +02:00 committed by Martin Weinelt
parent 962421a9e7
commit 87c0e628e1
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -7,6 +7,7 @@
, cryptography , cryptography
, freezegun , freezegun
, fetchFromGitHub , fetchFromGitHub
, jsonschema
, pycryptodome , pycryptodome
, pyserial-asyncio , pyserial-asyncio
, pytest-asyncio , pytest-asyncio
@ -19,7 +20,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "zigpy"; pname = "zigpy";
version = "0.63.4"; version = "0.63.5";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -28,24 +29,25 @@ buildPythonPackage rec {
owner = "zigpy"; owner = "zigpy";
repo = "zigpy"; repo = "zigpy";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-0wenUUkhgodsBID+ZT9JRoJeGDTqAChAIpj+9/Q3FMM="; hash = "sha256-iZxHXxheyoA5vo0Pxojs7QE8rSyTpsYpJ6/OzDSZJ20=";
}; };
postPatch = '' postPatch = ''
substituteInPlace pyproject.toml \ substituteInPlace pyproject.toml \
--replace '"setuptools-git-versioning<2"' "" \ --replace-fail '"setuptools-git-versioning<2"' "" \
--replace 'dynamic = ["version"]' 'version = "${version}"' --replace-fail 'dynamic = ["version"]' 'version = "${version}"'
''; '';
nativeBuildInputs = [ build-system = [
setuptools setuptools
]; ];
propagatedBuildInputs = [ dependencies = [
aiohttp aiohttp
aiosqlite aiosqlite
crccheck crccheck
cryptography cryptography
jsonschema
pyserial-asyncio pyserial-asyncio
pycryptodome pycryptodome
voluptuous voluptuous
@ -66,6 +68,11 @@ buildPythonPackage rec {
"test_periodic_scan_priority" "test_periodic_scan_priority"
]; ];
disabledTestPaths = [
# Tests require network access
"tests/ota/test_ota_providers.py"
];
pythonImportsCheck = [ pythonImportsCheck = [
"zigpy.application" "zigpy.application"
"zigpy.config" "zigpy.config"