From f477b3efdbf349fc94bb1df957ff8fe84a05bd40 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 1 Sep 2023 09:04:03 +0200 Subject: [PATCH] clairvoyance: 2.0.6 -> 2.5.3 Diff: https://github.com/nikitastupin/clairvoyance/compare/refs/tags/v2.5.3...v2.5.3 Changelog: https://github.com/nikitastupin/clairvoyance/releases/tag/v2.5.3 --- pkgs/tools/security/clairvoyance/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/clairvoyance/default.nix b/pkgs/tools/security/clairvoyance/default.nix index 2ffc101eb983..ba88338347fc 100644 --- a/pkgs/tools/security/clairvoyance/default.nix +++ b/pkgs/tools/security/clairvoyance/default.nix @@ -5,14 +5,14 @@ python3.pkgs.buildPythonApplication rec { pname = "clairvoyance"; - version = "2.0.6"; + version = "2.5.3"; format = "pyproject"; src = fetchFromGitHub { owner = "nikitastupin"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-Jsb/UjqAppAUz9AGgON6AyVgUdOY6aswjQ9EL939Kro="; + hash = "sha256-CVXa2HvX7M0cwqnTeZVETg07j324ATQuMNreEgAC2QA="; }; nativeBuildInputs = with python3.pkgs; [ @@ -21,6 +21,7 @@ python3.pkgs.buildPythonApplication rec { propagatedBuildInputs = with python3.pkgs; [ aiohttp + rich ]; nativeCheckInputs = with python3.pkgs; [ @@ -45,6 +46,7 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { description = "Tool to obtain GraphQL API schemas"; homepage = "https://github.com/nikitastupin/clairvoyance"; + changelog = "https://github.com/nikitastupin/clairvoyance/releases/tag/v${version}"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab ]; };