a66bca1520
GitOrigin-RevId: 40f79f003b6377bd2f4ed4027dde1f8f922995dd
37 lines
779 B
Nix
37 lines
779 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, msgpack
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "msgspec";
|
|
version = "0.10.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jcrist";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-/tu29RIszjzYQKeyYe+8Zkud3L/HBoWdXdpNcilWERs=";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|