From 9ea2c46d73ae6c27718f3d6d51bb0d057ec8a993 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 19 Apr 2025 12:48:09 +0200 Subject: [PATCH] python313Packages.tlslite-ng: 0.8.0b1-unstable-2024-06-24 -> 0.8.2 Changelog: https://github.com/tlsfuzzer/tlslite-ng/releases/tag/v0.8.2 --- .../python-modules/tlslite-ng/default.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/tlslite-ng/default.nix b/pkgs/development/python-modules/tlslite-ng/default.nix index 1d715c6758f7..de05af7f786c 100644 --- a/pkgs/development/python-modules/tlslite-ng/default.nix +++ b/pkgs/development/python-modules/tlslite-ng/default.nix @@ -1,24 +1,24 @@ { lib, buildPythonPackage, - fetchFromGitHub, - setuptools, ecdsa, + fetchFromGitHub, hypothesis, - pythonAtLeast, pytestCheckHook, + pythonAtLeast, + setuptools, }: -buildPythonPackage { +buildPythonPackage rec { pname = "tlslite-ng"; - version = "0.8.0b1-unstable-2024-06-24"; + version = "0.8.2"; pyproject = true; src = fetchFromGitHub { owner = "tlsfuzzer"; repo = "tlslite-ng"; - rev = "4d2c6b8fc8d14bb5c90c8360bdb6f617e8e38591"; - hash = "sha256-VCQjxZIs4rzlFrIakXI7YeLz7Ws9WRf8zGPcSryO9Ko="; + tag = "v${version}"; + hash = "sha256-lKSFPJ4Dm8o1zUgvXjUUpStV5M+xf7s6wOg2ceYbpbw="; }; build-system = [ setuptools ]; @@ -36,9 +36,9 @@ buildPythonPackage { ]; meta = with lib; { - changelog = "https://github.com/tlsfuzzer/tlslite-ng/releases/tag/v${version}"; - description = "Pure python implementation of SSL and TLS"; + description = "Implementation of SSL and TLS"; homepage = "https://github.com/tlsfuzzer/tlslite-ng"; + changelog = "https://github.com/tlsfuzzer/tlslite-ng/releases/tag/${src.tag}"; license = licenses.lgpl21Only; maintainers = [ ]; };