14 buildPythonPackage rec {
19 disabled = pythonOlder "3.11";
21 src = fetchFromGitHub {
23 repo = "python-elgato";
24 rev = "refs/tags/v${version}";
25 hash = "sha256-TI5wu2FYVUMvgDkbktcwPLnTSD8XUSy8qwOCdrsiopk=";
29 # Upstream doesn't set a version for the pyproject.toml
30 substituteInPlace pyproject.toml \
31 --replace "0.0.0" "${version}" \
39 propagatedBuildInputs = [
51 pythonImportsCheck = [
56 description = "Python client for Elgato Key Lights";
57 homepage = "https://github.com/frenck/python-elgato";
58 changelog = "https://github.com/frenck/python-elgato/releases/tag/v${version}";
59 license = with licenses; [ mit ];
60 maintainers = with maintainers; [ fab ];