My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/servers/home-assistant/frontend.nix

12 lines
268 B

{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "home-assistant-frontend";
version = "20180209.0";
src = fetchPypi {
inherit pname version;
sha256 = "b85f0e833871408a95619ae38d5344701a6466e8f7b5530e718ccc260b68d3ed";
};
}