nixpkgs/pkgs/tools/misc/esphome/dashboard.nix
R. Ryantm c57357368c
esphome: 2022.9.1 -> 2022.9.2
https://github.com/esphome/esphome/releases/tag/2022.9.2

Co-Authored-By: Martin Weinelt <hexa@darmstadt.ccc.de>
2022-09-29 14:30:48 +02:00

30 lines
549 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "esphome-dashboard";
version = "20220925.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-jlHS+Hdu1FWV/nJiiferOdyThWyIc21uAFFlh4BD+M4=";
};
# no tests
doCheck = false;
pythonImportsCheck = [
"esphome_dashboard"
];
meta = with lib; {
description = "ESPHome dashboard";
homepage = "https://esphome.io/";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ hexa ];
};
}