2021-06-16 19:01:02 +00:00
|
|
|
{ lib
|
2022-02-10 04:03:20 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-06-16 19:01:02 +00:00
|
|
|
}:
|
|
|
|
|
2022-02-10 04:03:20 +00:00
|
|
|
buildPythonPackage rec {
|
2021-06-16 19:01:02 +00:00
|
|
|
pname = "esphome-dashboard";
|
2022-12-15 08:39:50 +00:00
|
|
|
version = "20221213.0";
|
2022-09-29 06:02:26 +00:00
|
|
|
format = "setuptools";
|
2021-06-16 19:01:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-12-15 08:39:50 +00:00
|
|
|
hash = "sha256-LwP+LBHzEWjPUih6aaZnI7Yh85vsa1Md1YgBWkLOUIs=";
|
2021-06-16 19:01:02 +00:00
|
|
|
};
|
|
|
|
|
2021-06-22 01:14:16 +00:00
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"esphome_dashboard"
|
|
|
|
];
|
|
|
|
|
2021-06-16 19:01:02 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "ESPHome dashboard";
|
|
|
|
homepage = "https://esphome.io/";
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ hexa ];
|
|
|
|
};
|
|
|
|
}
|