summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-10-31 18:01:02 +0000
committerGitHub <noreply@github.com>2023-10-31 18:01:02 +0000
commit81270bbdcf37beeb451991cf5e96b57d14d38bca (patch)
tree91c21889bf9ba5e17b1cf2901b5d5ed114d3c43f /pkgs/tools/admin
parent2fd5f8dd7ad6c3a83bc960b6ea1f6903141270ea (diff)
parent2784272f5baa2ade2347c1e02a9665d85b85d723 (diff)
downloadnixpkgs-81270bbdcf37beeb451991cf5e96b57d14d38bca.tar
nixpkgs-81270bbdcf37beeb451991cf5e96b57d14d38bca.tar.gz
nixpkgs-81270bbdcf37beeb451991cf5e96b57d14d38bca.tar.bz2
nixpkgs-81270bbdcf37beeb451991cf5e96b57d14d38bca.tar.lz
nixpkgs-81270bbdcf37beeb451991cf5e96b57d14d38bca.tar.xz
nixpkgs-81270bbdcf37beeb451991cf5e96b57d14d38bca.tar.zst
nixpkgs-81270bbdcf37beeb451991cf5e96b57d14d38bca.zip
Merge master into staging-next
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 bc38b606b2e..95f8a98ed4a 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";
   };
 }