ddda371f59
https://github.com/home-assistant-libs/chip-wheels/releases/tag/2023.10.2 https://github.com/project-chip/connectedhomeip/releases/tag/v1.2.0.1
107 lines
1.9 KiB
Nix
107 lines
1.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
|
|
# build
|
|
, autoPatchelfHook
|
|
|
|
# runtime
|
|
, libnl
|
|
, openssl_1_1
|
|
|
|
# propagates
|
|
, aenum
|
|
, coloredlogs
|
|
, construct
|
|
, cryptography
|
|
, dacite
|
|
, ecdsa
|
|
, rich
|
|
, pyyaml
|
|
, ipdb
|
|
, deprecation
|
|
, mobly
|
|
, pygobject3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "home-assistant-chip-core";
|
|
version = "2023.10.2";
|
|
format = "wheel";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = let
|
|
system = {
|
|
"aarch64-linux" = {
|
|
name = "aarch64";
|
|
hash = "sha256-KBFXFD5cSVgE57S1cHghU3kPDrbRquAARN95UriPCnM=";
|
|
};
|
|
"x86_64-linux" = {
|
|
name = "x86_64";
|
|
hash = "sha256-9x7pjgERvsBuyol8LiuPOlFZ5Up92N9HYg1mH9/0HAU=";
|
|
};
|
|
}.${stdenv.system} or (throw "Unsupported system");
|
|
in fetchPypi {
|
|
pname = "home_assistant_chip_core";
|
|
inherit version format;
|
|
dist = "cp37";
|
|
python = "cp37";
|
|
abi = "abi3";
|
|
platform = "manylinux_2_31_${system.name}";
|
|
hash = system.hash;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libnl
|
|
openssl_1_1
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aenum
|
|
coloredlogs
|
|
construct
|
|
cryptography
|
|
dacite
|
|
ecdsa
|
|
rich
|
|
pyyaml
|
|
ipdb
|
|
deprecation
|
|
mobly
|
|
pygobject3
|
|
];
|
|
|
|
pythonNamespaces = [
|
|
"chip"
|
|
"chip.clusters"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"chip"
|
|
"chip.ble"
|
|
"chip.configuration"
|
|
"chip.discovery"
|
|
"chip.exceptions"
|
|
"chip.native"
|
|
"chip.storage"
|
|
];
|
|
|
|
doCheck = false; # no tests
|
|
|
|
meta = with lib; {
|
|
description = "Python-base APIs and tools for CHIP";
|
|
homepage = "https://github.com/home-assistant-libs/chip-wheels";
|
|
changelog = "https://github.com/home-assistant-libs/chip-wheels/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
maintainers = teams.home-assistant.members;
|
|
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
}
|