Files
nixpkgs/pkgs/development/python-modules/python-matter-server/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

87 lines
1.7 KiB
Nix

{ 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
];
};
nativeCheckInputs = [
pytest-aiohttp
pytestCheckHook
]
++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
preCheck = let
pythonEnv = python.withPackages (_: propagatedBuildInputs ++ nativeCheckInputs ++ [ 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;
};
}