depot/third_party/nixpkgs/pkgs/development/python-modules/jsonrpc-async/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

46 lines
860 B
Nix

{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
jsonrpc-base,
pytest-aiohttp,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "jsonrpc-async";
version = "2.1.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "emlove";
repo = pname;
rev = version;
hash = "sha256-KOnycsOZFDEVj8CJDwGbdtbOpMPQMVdrXbHG0fzr9PI=";
};
propagatedBuildInputs = [
aiohttp
jsonrpc-base
];
nativeCheckInputs = [
pytest-aiohttp
pytestCheckHook
];
pytestFlagsArray = [ "tests.py" ];
pythonImportsCheck = [ "jsonrpc_async" ];
meta = with lib; {
description = "JSON-RPC client library for asyncio";
homepage = "https://github.com/emlove/jsonrpc-async";
license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ];
};
}