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

28 lines
522 B
Nix
Raw Normal View History

2021-06-16 19:01:02 +00:00
{ lib
, python3
}:
with python3.pkgs; buildPythonPackage rec {
pname = "esphome-dashboard";
2021-12-11 19:17:44 +00:00
version = "20211211.0";
2021-06-16 19:01:02 +00:00
src = fetchPypi {
inherit pname version;
2021-12-11 19:17:44 +00:00
sha256 = "sha256-xF1/gUJCr4qRO+AnWeFO6b1YnQBOgve/23ZaGmCa910=";
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 ];
};
}