nixpkgs/pkgs/tools/misc/esphome/dashboard.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
549 B
Nix
Raw Normal View History

2021-06-16 19:01:02 +00:00
{ lib
, buildPythonPackage
, fetchPypi
2021-06-16 19:01:02 +00:00
}:
buildPythonPackage rec {
2021-06-16 19:01:02 +00:00
pname = "esphome-dashboard";
version = "20240412.0";
format = "setuptools";
2021-06-16 19:01:02 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-MT/EpZ8kDKHhJGF4njdh6Q+xe8GF4FYxaoIighSguiQ=";
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 ];
};
}