{ lib , buildPythonPackage , fetchFromGitHub , msgpack , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "msgspec"; version = "0.18.5"; format = "setuptools"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "jcrist"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-BcENL1vPCspzYdAHicC5AHs/7xZPWf+Yys37vKgbris="; }; # Requires libasan to be accessible doCheck = false; pythonImportsCheck = [ "msgspec" ]; meta = with lib; { description = "Module to handle JSON/MessagePack"; homepage = "https://github.com/jcrist/msgspec"; changelog = "https://github.com/jcrist/msgspec/releases/tag/${version}"; license = licenses.bsd3; maintainers = with maintainers; [ fab ]; }; }