From 15577f90e5e5b473f1c2005c1c0d67929e776eb7 Mon Sep 17 00:00:00 2001 From: alfarel Date: Tue, 26 May 2026 11:57:42 -0400 Subject: [PATCH] python3Packages.pypresence: 4.3.0-unstable-2025-03-27 -> 4.6.1 --- pkgs/development/python-modules/pypresence/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pypresence/default.nix b/pkgs/development/python-modules/pypresence/default.nix index 799ba2e0be03..dfc2e9cc2fb2 100644 --- a/pkgs/development/python-modules/pypresence/default.nix +++ b/pkgs/development/python-modules/pypresence/default.nix @@ -4,17 +4,19 @@ fetchFromGitHub, setuptools, }: - +let + version = "4.6.1"; +in buildPythonPackage { pname = "pypresence"; - version = "4.3.0-unstable-2025-03-27"; + inherit version; pyproject = true; src = fetchFromGitHub { owner = "qwertyquerty"; repo = "pypresence"; - rev = "4e882c36d0f800c016c15977243ac9a49177095a"; - hash = "sha256-DjwDmQMbI9tV40TTe1CthhphoysKSFICrRhqijJjIAE="; + tag = "v${version}"; + hash = "sha256-VvVHJ3S+Yusq4cK4KyDQlnL3VwAyrZqNKYzEgJPU8Vk="; }; build-system = [ setuptools ];