12 buildPythonPackage rec {
13 pname = "aiohttp-zlib-ng";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
21 repo = "aiohttp-zlib-ng";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-SiDDtadbBnw67lnqadAVSkHILB/8Sur0MfjgCbndX4o=";
27 substituteInPlace pyproject.toml \
28 --replace-fail " --cov=aiohttp_zlib_ng --cov-report=term-missing:skip-covered" ""
31 nativeBuildInputs = [ poetry-core ];
33 propagatedBuildInputs = [
38 nativeCheckInputs = [ pytestCheckHook ];
40 pythonImportsCheck = [ "aiohttp_zlib_ng" ];
43 description = "Enable zlib_ng on aiohttp";
44 homepage = "https://github.com/bdraco/aiohttp-zlib-ng";
45 changelog = "https://github.com/bdraco/aiohttp-zlib-ng/blob/${version}/CHANGELOG.md";
46 license = licenses.asl20;
47 maintainers = with maintainers; [ fab ];