about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/zulip-term
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-01-19 21:17:35 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-01-20 09:08:30 +0100
commit37c1398c433a6d9e8fd3141a405e94178158a2c1 (patch)
tree4ff2be1bed79c9205f26e678ec5c1ea408dfc496 /pkgs/applications/networking/instant-messengers/zulip-term
parent9002337a977535f0b26a316f34763c1cf609e0e6 (diff)
python312Packages.zfec: refactor
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/zulip-term')
-rw-r--r--pkgs/applications/networking/instant-messengers/zulip-term/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/networking/instant-messengers/zulip-term/default.nix b/pkgs/applications/networking/instant-messengers/zulip-term/default.nix
index 931f951583549..683c1069b3949 100644
--- a/pkgs/applications/networking/instant-messengers/zulip-term/default.nix
+++ b/pkgs/applications/networking/instant-messengers/zulip-term/default.nix
@@ -8,13 +8,13 @@
 python3.pkgs.buildPythonApplication rec {
   pname = "zulip-term";
   version = "0.7.0";
+  pyproject = true;
 
-  # no tests on PyPI
   src = fetchFromGitHub {
     owner = "zulip";
     repo = "zulip-terminal";
-    rev = version;
-    sha256 = "sha256-ZouUU4p1FSGMxPuzDo5P971R+rDXpBdJn2MqvkJO+Fw=";
+    rev = "refs/tags/${version}";
+    hash = "sha256-ZouUU4p1FSGMxPuzDo5P971R+rDXpBdJn2MqvkJO+Fw=";
   };
 
   patches = [
@@ -50,6 +50,7 @@ python3.pkgs.buildPythonApplication rec {
   meta = with lib; {
     description = "Zulip's official terminal client";
     homepage = "https://github.com/zulip/zulip-terminal";
+    changelog = "https://github.com/zulip/zulip-terminal/releases/tag/0.7.0";
     license = licenses.asl20;
     maintainers = with maintainers; [ dotlambda ];
   };