12 buildPythonPackage rec {
13 pname = "jsonrpc-async";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
23 hash = "sha256-KOnycsOZFDEVj8CJDwGbdtbOpMPQMVdrXbHG0fzr9PI=";
26 propagatedBuildInputs = [
36 pytestFlagsArray = [ "tests.py" ];
38 pythonImportsCheck = [ "jsonrpc_async" ];
41 description = "JSON-RPC client library for asyncio";
42 homepage = "https://github.com/emlove/jsonrpc-async";
43 license = licenses.bsd3;
44 maintainers = with maintainers; [ peterhoeg ];