Files
nixpkgs/pkgs/development/python-modules/jsonrpc-async/default.nix
T
Martin Weinelt 061fe902f7 python3Packages.jsonrpc-async: 2.1.2 -> 2.1.3
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:22 +01:00

47 lines
854 B
Nix

{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
jsonrpc-base,
pytest-aiohttp,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "jsonrpc-async";
version = "2.1.3";
pyproject = true;
src = fetchFromGitHub {
owner = "emlove";
repo = "jsonrpc-async";
tag = version;
hash = "sha256-WcO2mj5QYZTMnFTNo1ABgpJPxM+GREVIf+z9viFDJHM=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
jsonrpc-base
];
nativeCheckInputs = [
pytest-aiohttp
pytestCheckHook
];
enabledTestPaths = [ "tests.py" ];
pythonImportsCheck = [ "jsonrpc_async" ];
meta = {
description = "JSON-RPC client library for asyncio";
homepage = "https://github.com/emlove/jsonrpc-async";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ peterhoeg ];
};
}