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

47 lines
855 B
Nix
Raw Normal View History

{ stdenv
, lib
2017-06-04 12:24:32 +02:00
, buildPythonPackage
2021-08-24 10:15:32 +02:00
, fetchFromGitHub
, poetry-core
, pytest-asyncio
, pytestCheckHook
2017-06-04 12:24:32 +02:00
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiofiles";
version = "0.7.0";
2021-08-24 10:15:32 +02:00
format = "pyproject";
2017-06-04 12:24:32 +02:00
2021-08-24 10:15:32 +02:00
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Tinche";
repo = pname;
rev = "v${version}";
sha256 = "0vvk9j8cfdqvq8hw2qc6ajfzsy8x1afabf83mxafffq92rwknd4y";
2017-06-04 12:24:32 +02:00
};
2021-08-24 10:15:32 +02:00
nativeBuildInputs = [
poetry-core
];
checkInputs = [
pytest-asyncio
pytestCheckHook
];
2017-06-04 12:24:32 +02:00
disabledTests = lib.optionals stdenv.isDarwin [
"test_sendfile_file"
];
2021-08-24 10:15:32 +02:00
pythonImportsCheck = [ "aiofiles" ];
2017-06-04 12:24:32 +02:00
meta = {
description = "File support for asyncio";
homepage = "https://github.com/Tinche/aiofiles";
2017-06-04 12:24:32 +02:00
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ fridh ];
2017-06-04 12:24:32 +02:00
};
}