11 buildPythonPackage rec {
12 pname = "jsonrpc-base";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "jsonrpc-base";
22 hash = "sha256-AbpuAW+wuGc+Vj4FDFlyB2YbiwDxPLuyAGiNcmGU+Ss=";
25 nativeBuildInputs = [ setuptools ];
32 pytestFlagsArray = [ "tests.py" ];
34 pythonImportsCheck = [ "jsonrpc_base" ];
37 description = "JSON-RPC client library base interface";
38 homepage = "https://github.com/emlove/jsonrpc-base";
39 license = licenses.bsd3;
40 maintainers = with maintainers; [ peterhoeg ];