Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
93 lines
1.6 KiB
Nix
93 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,
|
|
|
|
# for passthru.tests
|
|
falcon,
|
|
fastapi,
|
|
gradio,
|
|
mashumaro,
|
|
ufolib2,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "orjson";
|
|
version = "3.11.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ijl";
|
|
repo = "orjson";
|
|
tag = version;
|
|
hash = "sha256-oTrmDYmUHXMKxgxzBIStw7nnWXcyH9ir0ohnbX4bdjU=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit pname version src;
|
|
hash = "sha256-y6FmK1RR1DAswVoTlnl19CmoYXAco1dY7lpV/KTypzE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cffi
|
|
]
|
|
++ (with rustPlatform; [
|
|
cargoSetupHook
|
|
maturinBuildHook
|
|
]);
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.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 ];
|
|
};
|
|
}
|