11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 rev = "refs/tags/${version}";
22 hash = "sha256-KBly/aeHHZh7mL8MJ9gmxbqS7PmR4sedtBY/2HCXt54=";
25 propagatedBuildInputs = [
35 pythonImportsCheck = [
40 # Tests (SystemError) fails randomly during nix-review
42 "test_async_open_iter_chunked"
43 "test_async_open_iter_chunked"
44 "test_async_open_line_iter"
45 "test_async_open_line_iter"
46 "test_async_open_readline"
47 "test_async_open_unicode"
49 "test_binary_io_wrapper"
51 "test_text_io_wrapper"
53 "test_write_read_nothing"
57 description = "File operations with asyncio support";
58 homepage = "https://github.com/mosquito/aiofile";
59 changelog = "https://github.com/aiokitchen/aiomisc/blob/master/CHANGELOG.md";
60 license = licenses.asl20;
61 maintainers = with maintainers; [ fab ];