nixpkgs/pkgs/development/python-modules/aiofiles/default.nix

28 lines
549 B
Nix
Raw Normal View History

2017-06-04 11:24:32 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiofiles";
2020-05-09 10:17:42 +01:00
version = "0.5.0";
2017-06-04 11:24:32 +01:00
src = fetchPypi {
inherit pname version;
2020-05-09 10:17:42 +01:00
sha256 = "98e6bcfd1b50f97db4980e182ddd509b7cc35909e903a8fe50d8849e02d815af";
2017-06-04 11:24:32 +01:00
};
disabled = pythonOlder "3.3";
# No tests in archive
doCheck = false;
meta = {
description = "File support for asyncio";
homepage = "https://github.com/Tinche/aiofiles";
2017-06-04 11:24:32 +01:00
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ fridh ];
2017-06-04 11:24:32 +01:00
};
}