depot/third_party/nixpkgs/pkgs/development/python-modules/caio/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

48 lines
1,001 B
Nix

{
lib,
stdenv,
aiomisc,
buildPythonPackage,
fetchFromGitHub,
pytest-aiohttp,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "caio";
version = "0.9.17";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mosquito";
repo = "caio";
rev = "refs/tags/${version}";
hash = "sha256-aTJ02dCLb3CsT6KmJxkmOzwtg5nuXeBwz+mT7ZTTU9o=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
aiomisc
pytest-aiohttp
pytestCheckHook
];
env.NIX_CFLAGS_COMPILE = toString (
lib.optionals stdenv.cc.isClang [ "-Wno-error=implicit-function-declaration" ]
);
pythonImportsCheck = [ "caio" ];
meta = with lib; {
description = "File operations with asyncio support";
homepage = "https://github.com/mosquito/caio";
changelog = "https://github.com/mosquito/caio/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}