15 buildPythonPackage rec {
20 disabled = pythonOlder "3.11";
22 src = fetchFromGitHub {
24 repo = "python-elgato";
25 rev = "refs/tags/v${version}";
26 hash = "sha256-NAU4tr0oaAPPrOUZYl9WoGOM68MlrBqGewHBIiIv2XY=";
30 # Upstream doesn't set a version for the pyproject.toml
31 substituteInPlace pyproject.toml \
32 --replace "0.0.0" "${version}" \
40 propagatedBuildInputs = [
53 pythonImportsCheck = [
58 description = "Python client for Elgato Key Lights";
59 homepage = "https://github.com/frenck/python-elgato";
60 changelog = "https://github.com/frenck/python-elgato/releases/tag/v${version}";
61 license = with licenses; [ mit ];
62 maintainers = with maintainers; [ fab ];