python3Packages.python-matter-server: init at 1.0.8

This commit is contained in:
Martin Weinelt 2023-01-12 04:24:14 +01:00
parent 2ec1b3609a
commit b2a31645aa
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
3 changed files with 90 additions and 0 deletions

View file

@ -0,0 +1,86 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# build
, setuptools
# propagates
, aiohttp
, aiorun
, coloredlogs
, dacite
, orjson
, home-assistant-chip-clusters
# optionals
, home-assistant-chip-core
# tests
, python
, pytest
, pytest-aiohttp
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "python-matter-server";
version = "1.0.8";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "python-matter-server";
rev = "refs/tags/${version}";
hash = "sha256-7w2Gg70Sl84zs55z6Hg8JPtkY9dNzyb1iBC6O4ulr1M=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
aiohttp
aiorun
coloredlogs
dacite
orjson
home-assistant-chip-clusters
];
passthru.optional-dependencies = {
server = [
home-assistant-chip-core
];
};
checkInputs = [
pytest-aiohttp
pytestCheckHook
]
++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
preCheck = let
pythonEnv = python.withPackages (_: propagatedBuildInputs ++ checkInputs ++ [ pytest ]);
in
''
export PYTHONPATH=${pythonEnv}/${python.sitePackages}
'';
pytestFlagsArray = [
# Upstream theymselves limit the test scope
# https://github.com/home-assistant-libs/python-matter-server/blob/main/.github/workflows/test.yml#L65
"tests/server"
];
meta = with lib; {
changelog = "https://github.com/home-assistant-libs/python-matter-server/releases/tag/${version}";
description = "Python server to interact with Matter";
homepage = "https://github.com/home-assistant-libs/python-matter-server";
license = licenses.asl20;
maintainers = teams.home-assistant.members;
};
}

View file

@ -17845,6 +17845,8 @@ with pkgs;
python-language-server = callPackage ../development/dotnet-modules/python-language-server { };
python-matter-server = with python3Packages; toPythonApplication python-matter-server;
minify = callPackage ../development/web/minify { };
minizinc = callPackage ../development/tools/minizinc { };

View file

@ -9227,6 +9227,8 @@ self: super: with self; {
python-markdown-math = callPackage ../development/python-modules/python-markdown-math { };
python-matter-server = callPackage ../development/python-modules/python-matter-server { };
python-miio = callPackage ../development/python-modules/python-miio { };
python-mimeparse = callPackage ../development/python-modules/python-mimeparse { };