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