rclip: format

This commit is contained in:
Gaetan Lepage 2024-11-28 14:15:20 +01:00
parent 4b27a14352
commit e79c1007de

View File

@ -1,6 +1,7 @@
{ lib
, python3Packages
, fetchFromGitHub
{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "rclip";
@ -29,7 +30,10 @@ python3Packages.buildPythonApplication rec {
nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
pythonRelaxDeps = [ "torch" "torchvision" ];
pythonRelaxDeps = [
"torch"
"torchvision"
];
pythonImportsCheck = [ "rclip" ];