about summary refs log tree commit diff
path: root/pkgs/by-name/rc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-02-06 18:02:11 +0100
committerGitHub <noreply@github.com>2024-02-06 18:02:11 +0100
commitae2b1e72fdc9a4c2dff8d706adcb6d1f6e72ca28 (patch)
treeba90ef93c8bbefa09d8d2aaacb987e5b06e4ee9a /pkgs/by-name/rc
parentab94c8c8d18e8a9e167a48466c3c5550db2c9c08 (diff)
parentb027bb0374d489badcb61b2c6b8459aac43bf5df (diff)
Merge pull request #281048 from iynaix/bump-rclip
rclip: 1.7.6 -> 1.7.24
Diffstat (limited to 'pkgs/by-name/rc')
-rw-r--r--pkgs/by-name/rc/rclip/package.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/by-name/rc/rclip/package.nix b/pkgs/by-name/rc/rclip/package.nix
index 072c4ccafa05f..938ee211ca89c 100644
--- a/pkgs/by-name/rc/rclip/package.nix
+++ b/pkgs/by-name/rc/rclip/package.nix
@@ -4,14 +4,14 @@
 }:
 python3Packages.buildPythonApplication rec {
   pname = "rclip";
-  version = "1.7.6";
+  version = "1.7.24";
   pyproject = true;
 
   src = fetchFromGitHub {
     owner = "yurijmikhalevich";
     repo = "rclip";
     rev = "v${version}";
-    hash = "sha256-lWaWq+dcAa/2pONka4xRpixqDuL6iYDF46vCyCmVWwE=";
+    hash = "sha256-JWtKgvSP7oaPg19vWnnCDfm7P5Uew+v9yuvH7y2eHHM=";
   };
 
   nativeBuildInputs = with python3Packages; [
@@ -27,7 +27,9 @@ python3Packages.buildPythonApplication rec {
     tqdm
   ];
 
-  nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
+  nativeCheckInputs = with python3Packages; [ pytestCheckHook pythonRelaxDepsHook ];
+
+  pythonRelaxDeps = [ "torch" "torchvision" ];
 
   pythonImportsCheck = [ "rclip" ];