2021-09-22 15:38:15 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2024-02-29 20:09:43 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
2021-09-22 15:38:15 +00:00
|
|
|
, pythonOlder
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
# build-system
|
2021-09-22 15:38:15 +00:00
|
|
|
, rustPlatform
|
2022-08-12 12:06:08 +00:00
|
|
|
, cffi
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
# native dependencies
|
2021-09-22 15:38:15 +00:00
|
|
|
, libiconv
|
2024-02-29 20:09:43 +00:00
|
|
|
|
|
|
|
# tests
|
2021-09-22 15:38:15 +00:00
|
|
|
, numpy
|
|
|
|
, psutil
|
|
|
|
, pytestCheckHook
|
|
|
|
, python-dateutil
|
|
|
|
, pytz
|
|
|
|
, xxhash
|
2024-02-29 20:09:43 +00:00
|
|
|
, python
|
2024-04-21 15:54:59 +00:00
|
|
|
|
|
|
|
# for passthru.tests
|
|
|
|
, falcon
|
|
|
|
, fastapi
|
|
|
|
, gradio
|
|
|
|
, mashumaro
|
|
|
|
, ufolib2
|
2021-09-22 15:38:15 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "orjson";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "3.9.15";
|
2024-02-29 20:09:43 +00:00
|
|
|
pyproject = true;
|
2023-03-15 16:39:30 +00:00
|
|
|
|
2021-09-22 15:38:15 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ijl";
|
2024-02-29 20:09:43 +00:00
|
|
|
repo = "orjson";
|
2023-03-15 16:39:30 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-6fcj64d/uFCxaez+xxOdHd+NqILKOPqK+YlxYX7D0DI=";
|
2021-09-22 15:38:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
|
|
inherit src;
|
|
|
|
name = "${pname}-${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-/Aa3saUP4QjSBIS9T8Vd0yggiJn2SIk7dYMA5icb1yA=";
|
2021-09-22 15:38:15 +00:00
|
|
|
};
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
maturinBuildFlags = [ "--interpreter ${python.executable}" ];
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cffi
|
|
|
|
] ++ (with rustPlatform; [
|
2021-09-22 15:38:15 +00:00
|
|
|
cargoSetupHook
|
|
|
|
maturinBuildHook
|
2022-08-12 12:06:08 +00:00
|
|
|
]);
|
2021-09-22 15:38:15 +00:00
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
|
|
libiconv
|
|
|
|
];
|
2021-09-22 15:38:15 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-09-22 15:38:15 +00:00
|
|
|
numpy
|
|
|
|
psutil
|
|
|
|
pytestCheckHook
|
|
|
|
python-dateutil
|
|
|
|
pytz
|
|
|
|
xxhash
|
|
|
|
];
|
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"orjson"
|
|
|
|
];
|
2021-09-22 15:38:15 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit
|
|
|
|
falcon
|
|
|
|
fastapi
|
|
|
|
gradio
|
|
|
|
mashumaro
|
|
|
|
ufolib2
|
|
|
|
;
|
|
|
|
};
|
|
|
|
|
2021-09-22 15:38:15 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy";
|
|
|
|
homepage = "https://github.com/ijl/orjson";
|
2023-02-02 18:25:31 +00:00
|
|
|
changelog = "https://github.com/ijl/orjson/blob/${version}/CHANGELOG.md";
|
2021-09-22 15:38:15 +00:00
|
|
|
license = with licenses; [ asl20 mit ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ misuzu ];
|
|
|
|
};
|
|
|
|
}
|