nixpkgs/pkgs/development/python-modules/aiofiles/default.nix
2021-06-21 16:48:41 -07:00

27 lines
549 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiofiles";
version = "0.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "a1c4fc9b2ff81568c83e21392a82f344ea9d23da906e4f6a52662764545e19d4";
};
disabled = pythonOlder "3.3";
# No tests in archive
doCheck = false;
meta = {
description = "File support for asyncio";
homepage = "https://github.com/Tinche/aiofiles";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ fridh ];
};
}