{ lib , aiohttp , aresponses , async-timeout , backoff , buildPythonPackage , fetchFromGitHub , poetry-core , pytest-asyncio , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "aiogithubapi"; version = "22.3.1"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "ludeeus"; repo = pname; rev = version; hash = "sha256-5gKANZtDhIoyfyLdS15JDWTxHBFkaHDUlbVVhRs7MSE="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aiohttp async-timeout backoff ]; checkInputs = [ aresponses pytest-asyncio pytestCheckHook ]; postPatch = '' # Upstream is releasing with the help of a CI to PyPI, GitHub releases # are not in their focus substituteInPlace pyproject.toml \ --replace 'version="main",' 'version="${version}",' ''; pythonImportsCheck = [ "aiogithubapi" ]; meta = with lib; { description = "Python client for the GitHub API"; homepage = "https://github.com/ludeeus/aiogithubapi"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }