69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, pythonOlder
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, cffi
|
|
, libiconv
|
|
, numpy
|
|
, psutil
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pytz
|
|
, xxhash
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "orjson";
|
|
version = "3.9.10";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ijl";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-MkcuayNDt7/GcswXoFTvzuaZzhQEQV+V7OfKqgJwVIQ=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-2eRV+oZQvsWWJ4AUTeuE0CHtTHC6jNZiX/y5uXuwvns=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cffi
|
|
] ++ (with rustPlatform; [
|
|
cargoSetupHook
|
|
maturinBuildHook
|
|
]);
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
libiconv
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
numpy
|
|
psutil
|
|
pytestCheckHook
|
|
python-dateutil
|
|
pytz
|
|
xxhash
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"orjson"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|