9 buildPythonPackage rec {
14 disabled = pythonOlder "3.8";
16 src = fetchFromGitHub {
19 rev = "refs/tags/${version}";
20 hash = "sha256-xqtV60saQNINPMpOnZRSDnicedPSPBUQwPSE5zJGrTo=";
23 nativeBuildInputs = [ setuptools ];
25 # Requires libasan to be accessible
28 pythonImportsCheck = [ "msgspec" ];
31 description = "Module to handle JSON/MessagePack";
32 homepage = "https://github.com/jcrist/msgspec";
33 changelog = "https://github.com/jcrist/msgspec/releases/tag/${version}";
34 license = licenses.bsd3;
35 maintainers = with maintainers; [ fab ];