blob: 8122aa00c2185087b8859d9337b9c8fa2c73cbf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
{
lib,
aiomisc,
aiomisc-pytest,
caio,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "aiofile";
version = "3.8.6";
pyproject = true;
src = fetchFromGitHub {
owner = "mosquito";
repo = "aiofile";
tag = version;
hash = "sha256-KBly/aeHHZh7mL8MJ9gmxbqS7PmR4sedtBY/2HCXt54=";
};
build-system = [ setuptools ];
dependencies = [ caio ];
nativeCheckInputs = [
aiomisc
aiomisc-pytest
pytestCheckHook
];
pythonImportsCheck = [ "aiofile" ];
disabledTests = [
# Tests (SystemError) fails randomly during nixpkgs-review
"test_async_open_fp"
"test_async_open_iter_chunked"
"test_async_open_iter_chunked"
"test_async_open_line_iter"
"test_async_open_line_iter"
"test_async_open_readline"
"test_async_open_unicode"
"test_async_open"
"test_binary_io_wrapper"
"test_line_reader_one_line"
"test_modes"
"test_open_non_existent_file_with_append"
"test_text_io_wrapper"
"test_truncate"
"test_unicode_reader"
"test_unicode_writer"
"test_write_read_nothing"
];
meta = {
description = "File operations with asyncio support";
homepage = "https://github.com/mosquito/aiofile";
changelog = "https://github.com/aiokitchen/aiomisc/blob/master/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|