2017-06-04 11:24:32 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pythonOlder
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aiofiles";
|
2020-11-29 14:04:22 +00:00
|
|
|
version = "0.6.0";
|
2017-06-04 11:24:32 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 14:04:22 +00:00
|
|
|
sha256 = "e0281b157d3d5d59d803e3f4557dcc9a3dff28a4dd4829a9ff478adae50ca092";
|
2017-06-04 11:24:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.3";
|
|
|
|
|
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "File support for asyncio";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Tinche/aiofiles";
|
2017-06-04 11:24:32 +01:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
2017-12-05 22:20:11 +00:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
2017-06-04 11:24:32 +01:00
|
|
|
};
|
2017-12-05 22:20:11 +00:00
|
|
|
}
|