depot/third_party/nixpkgs/pkgs/development/python-modules/msgspec/default.nix

40 lines
833 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
msgpack,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "msgspec";
version = "0.18.6";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jcrist";
repo = "msgspec";
rev = "refs/tags/${version}";
hash = "sha256-xqtV60saQNINPMpOnZRSDnicedPSPBUQwPSE5zJGrTo=";
};
nativeBuildInputs = [ setuptools ];
# 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 ];
};
}