depot/third_party/nixpkgs/pkgs/development/python-modules/orjson/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

95 lines
1.6 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# build-system
, rustPlatform
, cffi
# native dependencies
, libiconv
# tests
, numpy
, psutil
, pytestCheckHook
, python-dateutil
, pytz
, xxhash
, python
# for passthru.tests
, falcon
, fastapi
, gradio
, mashumaro
, ufolib2
}:
buildPythonPackage rec {
pname = "orjson";
version = "3.10.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ijl";
repo = "orjson";
rev = "refs/tags/${version}";
hash = "sha256-vEJriLd7f+zlYcMIyhDTkq2kmNc5MaNLHo0qMLS5hro=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-yQkpjedHwgsZiiZEzYV66aa9RepCFW0PBqtD29tfoMI=";
};
maturinBuildFlags = [ "--interpreter ${python.executable}" ];
nativeBuildInputs = [
cffi
] ++ (with rustPlatform; [
cargoSetupHook
maturinBuildHook
]);
buildInputs = lib.optionals stdenv.isDarwin [
libiconv
];
nativeCheckInputs = [
numpy
psutil
pytestCheckHook
python-dateutil
pytz
xxhash
];
pythonImportsCheck = [
"orjson"
];
passthru.tests = {
inherit
falcon
fastapi
gradio
mashumaro
ufolib2
;
};
meta = with lib; {
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy";
homepage = "https://github.com/ijl/orjson";
changelog = "https://github.com/ijl/orjson/blob/${version}/CHANGELOG.md";
license = with licenses; [ asl20 mit ];
platforms = platforms.unix;
maintainers = with maintainers; [ misuzu ];
};
}