{ lib , buildPythonPackage , fetchPypi , isPyPy , pytestCheckHook , pythonOlder , setuptools-scm }: buildPythonPackage rec { pname = "ujson"; version = "5.1.0"; disabled = isPyPy || pythonOlder "3.5"; src = fetchPypi { inherit pname version; sha256 = "a88944d2f99db71a3ca0c63d81f37e55b660edde0b07216fb65a3e46403ef004"; }; nativeBuildInputs = [ setuptools-scm ]; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "ujson" ]; meta = with lib; { description = "Ultra fast JSON encoder and decoder for Python"; homepage = "https://pypi.python.org/pypi/ujson"; license = licenses.bsd3; maintainers = with maintainers; [ ]; }; }