1{ 2 buildPythonPackage, 3 hatchling, 4 fetchPypi, 5 lib, 6}: 7 8buildPythonPackage rec { 9 pname = "jsonrpclib-pelix"; 10 version = "0.4.3.4"; 11 pyproject = true; 12 build-system = [ hatchling ]; 13 14 src = fetchPypi { 15 pname = "jsonrpclib_pelix"; 16 inherit version; 17 hash = "sha256-6C1vTakHp9ER75P9I2HIwgt50ki+T+mWeOCGJqqPy+8="; 18 }; 19 20 doCheck = false; # test_suite="tests" in setup.py but no tests in pypi. 21 22 meta = { 23 description = "JSON RPC client library - Pelix compatible fork"; 24 homepage = "https://pypi.python.org/pypi/jsonrpclib-pelix/"; 25 license = lib.licenses.asl20; 26 maintainers = [ ]; 27 }; 28}