13 buildPythonPackage rec {
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
23 rev = "refs/tags/${version}";
24 hash = "sha256-aTJ02dCLb3CsT6KmJxkmOzwtg5nuXeBwz+mT7ZTTU9o=";
27 build-system = [ setuptools ];
35 env.NIX_CFLAGS_COMPILE = toString (
36 lib.optionals stdenv.cc.isClang [ "-Wno-error=implicit-function-declaration" ]
39 pythonImportsCheck = [ "caio" ];
42 description = "File operations with asyncio support";
43 homepage = "https://github.com/mosquito/caio";
44 changelog = "https://github.com/mosquito/caio/releases/tag/${version}";
45 license = licenses.asl20;
46 maintainers = with maintainers; [ fab ];