15 lines
390 B
Nix
15 lines
390 B
Nix
{ fetchPypi, home-assistant, ... }:
|
|
home-assistant.python.pkgs.buildPythonPackage rec {
|
|
pname = "uart-wifi";
|
|
version = "0.2.1";
|
|
format = "pyproject";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-yquZ5V8f+EqetCf0nc9WlhHhnHkOASYRuYvqEIMc5HI=";
|
|
};
|
|
|
|
build-system = [ home-assistant.python.pkgs.setuptools ];
|
|
|
|
doCheck = false; # no tests in the PyPI tarball
|
|
}
|