depot/third_party/nixpkgs/pkgs/development/python-modules/python-matter-server/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

136 lines
2.7 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
stdenvNoCC,
substituteAll,
# build
setuptools,
pythonRelaxDepsHook,
# propagates
aiohttp,
aiorun,
async-timeout,
coloredlogs,
dacite,
orjson,
home-assistant-chip-clusters,
# optionals
cryptography,
home-assistant-chip-core,
zeroconf,
# tests
python,
pytest,
pytest-aiohttp,
pytestCheckHook,
}:
let
paaCerts = stdenvNoCC.mkDerivation rec {
pname = "matter-server-paa-certificates";
version = "1.3.0.0";
src = fetchFromGitHub {
owner = "project-chip";
repo = "connectedhomeip";
rev = "refs/tags/v${version}";
hash = "sha256-5MI6r0KhSTzolesTQ8YWeoko64jFu4jHfO5KOOKpV0A=";
};
installPhase = ''
runHook preInstall
mkdir -p $out
cp $src/credentials/development/paa-root-certs/* $out/
runHook postInstall
'';
};
in
buildPythonPackage rec {
pname = "python-matter-server";
version = "6.1.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "python-matter-server";
rev = "refs/tags/${version}";
hash = "sha256-sY/FaMZ3p/AC63t1ku1Khgqi71G7u2O+ZPTuMPHFkuk=";
};
patches = [
(substituteAll {
src = ./link-paa-root-certs.patch;
paacerts = paaCerts;
})
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'version = "0.0.0"' 'version = "${version}"' \
--replace '--cov' ""
'';
build-system = [
setuptools
pythonRelaxDepsHook
];
pythonRelaxDeps = [ "home-assistant-chip-clusters" ];
dependencies = [
aiohttp
aiorun
async-timeout
coloredlogs
dacite
orjson
home-assistant-chip-clusters
];
optional-dependencies = {
server = [
cryptography
home-assistant-chip-core
zeroconf
];
};
nativeCheckInputs = [
pytest-aiohttp
pytestCheckHook
] ++ lib.flatten (lib.attrValues optional-dependencies);
preCheck =
let
pythonEnv = python.withPackages (_: dependencies ++ 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";
mainProgram = "matter-server";
homepage = "https://github.com/home-assistant-libs/python-matter-server";
license = licenses.asl20;
maintainers = teams.home-assistant.members;
};
}