17 buildPythonPackage rec {
22 disabled = pythonOlder "3.11";
24 src = fetchFromGitHub {
27 rev = "refs/tags/v${version}";
28 hash = "sha256-y32zynkVsn5vWw+BZ6ZRf9zemGOWJMN4yfNQZ0bRpos=";
32 # Upstream doesn't set a version for the pyproject.toml
33 substituteInPlace pyproject.toml \
34 --replace "0.0.0" "${version}" \
42 propagatedBuildInputs = [
57 pythonImportsCheck = [
62 description = "Asynchronous Python client for WLED";
63 homepage = "https://github.com/frenck/python-wled";
64 changelog = "https://github.com/frenck/python-wled/releases/tag/v${version}";
65 license = licenses.mit;
66 maintainers = with maintainers; [ hexa ];