about summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-10-30 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-10-30 04:20:00 +0000
commit3c46bb4528b125956e36d66d9ead5fc422450616 (patch)
treeea9c3bf70a271692efcf85a57b57fa9b0e1ff410 /pkgs/tools/admin
parentccd110837b0e48de648d04cf598e38e26b8f7328 (diff)
downloadnixlib-3c46bb4528b125956e36d66d9ead5fc422450616.tar
nixlib-3c46bb4528b125956e36d66d9ead5fc422450616.tar.gz
nixlib-3c46bb4528b125956e36d66d9ead5fc422450616.tar.bz2
nixlib-3c46bb4528b125956e36d66d9ead5fc422450616.tar.lz
nixlib-3c46bb4528b125956e36d66d9ead5fc422450616.tar.xz
nixlib-3c46bb4528b125956e36d66d9ead5fc422450616.tar.zst
nixlib-3c46bb4528b125956e36d66d9ead5fc422450616.zip
iredis: 1.13.2 -> 1.14.0
Diff: https://github.com/laixintao/iredis/compare/refs/tags/v1.13.2...v1.14.0

Changelog: https://github.com/laixintao/iredis/raw/refs/tags/v1.14.0/CHANGELOG.md
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/iredis/default.nix15
1 files changed, 4 insertions, 11 deletions
diff --git a/pkgs/tools/admin/iredis/default.nix b/pkgs/tools/admin/iredis/default.nix
index bc38b606b2e7..95f8a98ed4a4 100644
--- a/pkgs/tools/admin/iredis/default.nix
+++ b/pkgs/tools/admin/iredis/default.nix
@@ -6,26 +6,18 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "iredis";
-  version = "1.13.2";
-  format = "pyproject";
+  version = "1.14.0";
+  pyproject = true;
 
   src = fetchFromGitHub {
     owner = "laixintao";
     repo = "iredis";
     rev = "refs/tags/v${version}";
-    hash = "sha256-dGOB7emhuP+V0pHlSdS1L1OC4jO3jtf5RFOy0UFYiuY=";
+    hash = "sha256-5TMO1c29ahAQDbAJZb3u2oY0Z8M+6b8hwbNfqMsuPzM=";
   };
 
-  pythonRelaxDeps = [
-    "configobj"
-    "wcwidth"
-    "click"
-    "packaging"
-  ];
-
   nativeBuildInputs = with python3.pkgs; [
     poetry-core
-    pythonRelaxDepsHook
   ];
 
   propagatedBuildInputs = with python3.pkgs; [
@@ -65,5 +57,6 @@ python3.pkgs.buildPythonApplication rec {
     homepage = "https://iredis.io/";
     license = licenses.bsd3;
     maintainers = with maintainers; [ marsam ];
+    mainProgram = "iredis";
   };
 }