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

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

29 lines
526 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 = "20220508.0";
2021-06-16 19:01:02 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-nBVVNe6Qwo72ws6G8WAO99f2ftbxoixOB0eiLuILyeg=";
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 ];
};
}