567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
gitlike-commands,
|
|
paho-mqtt,
|
|
poetry-core,
|
|
pyaml,
|
|
pydantic,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ha-mqtt-discoverable";
|
|
version = "0.23.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "unixorn";
|
|
repo = "ha-mqtt-discoverable";
|
|
tag = "v${version}";
|
|
hash = "sha256-RITgyY9aAkDDm+SrBpfL4s2DJ2ssWddtbm0IvXswXxM=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"paho-mqtt"
|
|
"pyaml"
|
|
"pydantic"
|
|
];
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
gitlike-commands
|
|
paho-mqtt
|
|
pyaml
|
|
pydantic
|
|
];
|
|
|
|
# Test require a running Mosquitto instance
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "ha_mqtt_discoverable" ];
|
|
|
|
meta = {
|
|
description = "Python module to create MQTT entities that are automatically discovered by Home Assistant";
|
|
homepage = "https://github.com/unixorn/ha-mqtt-discoverable";
|
|
changelog = "https://github.com/unixorn/ha-mqtt-discoverable/releases/tag/${src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|