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 20:01:02 +01:00
{ lib
, buildPythonPackage
, fetchPypi
2021-06-16 20:01:02 +01:00
}:
buildPythonPackage rec {
2021-06-16 20:01:02 +01:00
pname = "esphome-dashboard";
version = "20220508.0";
2021-06-16 20:01:02 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-nBVVNe6Qwo72ws6G8WAO99f2ftbxoixOB0eiLuILyeg=";
2021-06-16 20:01:02 +01:00
};
2021-06-22 02:14:16 +01:00
# no tests
doCheck = false;
pythonImportsCheck = [
"esphome_dashboard"
];
2021-06-16 20:01:02 +01:00
meta = with lib; {
description = "ESPHome dashboard";
homepage = "https://esphome.io/";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ hexa ];
};
}