{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, hatchling, httpx, typing-extensions, }: buildPythonPackage rec { pname = "gotenberg-client"; version = "0.11.0"; pyproject = true; src = fetchFromGitHub { owner = "stumpylog"; repo = "gotenberg-client"; tag = version; hash = "sha256-a/GXVhZtxGgmx5mb8hozbXAI9ecrl0c6BIz3BNekA8Q="; }; build-system = [ hatchling ]; dependencies = [ httpx ] ++ lib.optionals (pythonOlder "3.11") [ typing-extensions ] ++ httpx.optional-dependencies.http2; # requires running gotenberg service doCheck = false; pythonImportsCheck = [ "gotenberg_client" ]; meta = with lib; { description = "Python client for interfacing with the Gotenberg API"; homepage = "https://github.com/stumpylog/gotenberg-client"; changelog = "https://github.com/stumpylog/gotenberg-client/blob/${src.tag}/CHANGELOG.md"; license = licenses.mpl20; maintainers = with maintainers; [ leona ]; }; }