python310Packages.python-matter-server: 3.1.0 -> 3.2.0

https://github.com/home-assistant-libs/python-matter-server/releases/tag/3.2.0
This commit is contained in:
Martin Weinelt 2023-04-01 02:18:32 +02:00
parent c418d8fc47
commit 0686d18e41
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -15,6 +15,7 @@
, home-assistant-chip-clusters
# optionals
, cryptography
, home-assistant-chip-core
# tests
@ -26,16 +27,16 @@
buildPythonPackage rec {
pname = "python-matter-server";
version = "3.1.0";
version = "3.2.0";
format = "pyproject";
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "python-matter-server";
rev = "refs/tags/${version}";
hash = "sha256-nNf0Q3J5nrYDinMnl+p3HC4FYMX+GubYmtchfuATWms=";
hash = "sha256-T2DB3oWePYR8qKfUeVDMUA5JGdMk/onbpjBt2fWhCuw=";
};
nativeBuildInputs = [
@ -53,6 +54,7 @@ buildPythonPackage rec {
passthru.optional-dependencies = {
server = [
cryptography
home-assistant-chip-core
];
};