rclip: init at 1.7.6
This commit is contained in:
parent
6a23eb87d0
commit
d17443fb12
46
pkgs/by-name/rc/rclip/package.nix
Normal file
46
pkgs/by-name/rc/rclip/package.nix
Normal file
@ -0,0 +1,46 @@
|
||||
{ lib
|
||||
, python3Packages
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "rclip";
|
||||
version = "1.7.6";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yurijmikhalevich";
|
||||
repo = "rclip";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-lWaWq+dcAa/2pONka4xRpixqDuL6iYDF46vCyCmVWwE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3Packages; [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
open-clip-torch
|
||||
pillow
|
||||
requests
|
||||
torch
|
||||
torchvision
|
||||
tqdm
|
||||
];
|
||||
|
||||
nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "rclip" ];
|
||||
|
||||
disabledTestPaths = [
|
||||
# requires network
|
||||
"tests/e2e/test_rclip.py"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "AI-Powered Command-Line Photo Search Tool";
|
||||
homepage = "https://github.com/yurijmikhalevich/rclip";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ iynaix ];
|
||||
mainProgram = "rclip";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user