about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authortomberek <tomberek@users.noreply.github.com>2024-06-16 10:15:11 -0400
committerGitHub <noreply@github.com>2024-06-16 10:15:11 -0400
commit95cc1daad6457b0aaddf9798c9a8f9f1a262a7ea (patch)
treed53584678b8cec1cde9ee1a1dce80d2a5174e361 /pkgs
parentff736d152877f4a16cb93720d649ae6aa6045691 (diff)
parent4cbba72894bc67a16387995c7e4210943d338ab4 (diff)
Merge pull request #320235 from iynaix/bump-rclip
rclip: 1.9.0 -> 1.10.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/rc/rclip/package.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/by-name/rc/rclip/package.nix b/pkgs/by-name/rc/rclip/package.nix
index 2d4cf0c975aa3..09790b93cbcc6 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.9.0";
+  version = "1.10.0";
   pyproject = true;
 
   src = fetchFromGitHub {
     owner = "yurijmikhalevich";
     repo = "rclip";
     rev = "refs/tags/v${version}";
-    hash = "sha256-q6z/JEIPnVnaHx9x53f9KyCKt7nZRxQGPeVTT1SqxkU=";
+    hash = "sha256-l3KsOX5IkU4/wQyXXHR+09KPSD6nsnBaiGjSi7fMyqA=";
   };
 
   nativeBuildInputs = with python3Packages; [
@@ -38,6 +38,13 @@ python3Packages.buildPythonApplication rec {
     "tests/e2e/test_rclip.py"
   ];
 
+  disabledTests = [
+    # requires network
+    "test_text_model_produces_the_same_vector_as_the_main_model"
+    "test_loads_text_model_when_text_processing_only_requested_and_checkpoint_exists"
+    "test_loads_full_model_when_text_processing_only_requested_and_checkpoint_doesnt_exist"
+  ];
+
   meta = with lib; {
     description = "AI-Powered Command-Line Photo Search Tool";
     homepage = "https://github.com/yurijmikhalevich/rclip";