mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
c57357368c
https://github.com/esphome/esphome/releases/tag/2022.9.2 Co-Authored-By: Martin Weinelt <hexa@darmstadt.ccc.de>
30 lines
549 B
Nix
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 ];
|
|
};
|
|
}
|