1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
95 lines
1.7 KiB
Nix
95 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# 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.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ijl";
|
|
repo = "orjson";
|
|
tag = version;
|
|
hash = "sha256-LK3Up6bAWZkou791nrA9iHlgfDLbk196iTn3CBfeyYc=";
|
|
};
|
|
|
|
patches = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
# fix architecture checks in build.rs to fix build for riscv
|
|
./cross-arch-compat.patch
|
|
];
|
|
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit pname version src;
|
|
hash = "sha256-TdZtbb9zR0T+0eauEgRVrDKN2eyCNfEQCJziPlKPWpI=";
|
|
};
|
|
|
|
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 = {
|
|
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 lib.licenses; [
|
|
asl20
|
|
mit
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ misuzu ];
|
|
};
|
|
}
|