1{ lib
2, buildPythonPackage
3, fetchPypi
4, pythonOlder
5}:
6
7buildPythonPackage rec {
8 pname = "aiofiles";
9 version = "0.4.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "021ea0ba314a86027c166ecc4b4c07f2d40fc0f4b3a950d1868a0f2571c2bbee";
14 };
15
16 disabled = pythonOlder "3.3";
17
18 # No tests in archive
19 doCheck = false;
20
21 meta = {
22 description = "File support for asyncio";
23 homepage = https://github.com/Tinche/aiofiles;
24 license = with lib.licenses; [ asl20 ];
25 maintainers = with lib.maintainers; [ fridh ];
26 };
27}