47 lines
769 B
Nix
47 lines
769 B
Nix
{
|
|||
lib,
|
|||
buildPythonPackage,
|
|||
fetchFromGitHub,
|
|||
pytestCheckHook,
|
|||
setuptools,
|
|||
numpy,
|
|||
torch,
|
|||
}:
|
|||
|
|||
buildPythonPackage rec {
|
|||
pname = "roma";
|
|||
version = "1.5.1";
|
|||
pyproject = true;
|
|||
|
|||
src = fetchFromGitHub {
|
|||
owner = "naver";
|
|||
repo = "roma";
|
|||
rev = "refs/tags/v${version}";
|
|||
hash = "sha256-DuQjnHoZKQF/xnFMYb0OXhycsRcK4oHoocq6o+NoGRs=";
|
|||
};
|
|||
|
|||
build-system = [
|
|||
setuptools
|
|||
];
|
|||
|
|||
dependencies = [
|
|||
numpy
|
|||
torch
|
|||
];
|
|||
|
|||
nativeCheckInputs = [
|
|||
pytestCheckHook
|
|||
];
|
|||
|
|||
pythonImportsCheck = [
|
|||
"roma"
|
|||
];
|
|||
|
|||
meta = {
|
|||
description = "Lightweight library to deal with 3D rotations in PyTorch";
|
|||
homepage = "https://github.com/naver/roma";
|
|||
license = lib.licenses.bsd3;
|
|||
maintainers = with lib.maintainers; [ nim65s ];
|
|||
};
|
|||
}
|