1{ lib
2, buildPythonPackage
3, fetchPypi
4, pythonOlder
5}:
6
7buildPythonPackage rec {
8 pname = "aiofiles";
9 version = "0.6.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "e0281b157d3d5d59d803e3f4557dcc9a3dff28a4dd4829a9ff478adae50ca092";
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}