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
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
|
|
# nativeBuildInputs
|
|
rustPlatform,
|
|
cmake,
|
|
nasm,
|
|
|
|
# tests
|
|
numpy,
|
|
pytestCheckHook,
|
|
torch,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "kornia-rs";
|
|
version = "0.1.9";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kornia";
|
|
repo = "kornia-rs";
|
|
tag = "v${version}";
|
|
hash = "sha256-0Id1Iyd/xyqSqFvg/TXnlX1DgMUWuMS9KbtDXduwU+Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.maturinBuildHook
|
|
rustPlatform.cargoSetupHook
|
|
cmake # Only for dependencies.
|
|
nasm # Only for dependencies.
|
|
];
|
|
|
|
cargoRoot = "kornia-py";
|
|
cargoDeps = rustPlatform.importCargoLock {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
postPatch = ''
|
|
ln -s ${./Cargo.lock} kornia-py/Cargo.lock
|
|
'';
|
|
|
|
maturinBuildFlags = [
|
|
"-m"
|
|
"kornia-py/Cargo.toml"
|
|
];
|
|
|
|
dontUseCmakeConfigure = true; # We only want to use CMake to build some Rust dependencies.
|
|
|
|
nativeCheckInputs = [
|
|
numpy
|
|
pytestCheckHook
|
|
torch
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/kornia/kornia-rs";
|
|
description = "Python bindings to Low-level Computer Vision library in Rust";
|
|
changelog = "https://github.com/kornia/kornia-rs/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ chpatrick ];
|
|
badPlatforms = [
|
|
# error: could not compile `kornia-3d` (lib)
|
|
# error: rustc interrupted by SIGSEGV
|
|
"aarch64-linux"
|
|
];
|
|
};
|
|
}
|