From 61a87b71a20979b2ab50255da12cdfdb2acb4abb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 29 Aug 2023 08:53:38 +0200 Subject: [PATCH 1/3] python311Packages.impacket: 0.10.0 -> 0.11.0 Changelog: https://github.com/fortra/impacket/releases/tag/impacket_0_11_0 --- pkgs/development/python-modules/impacket/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/impacket/default.nix b/pkgs/development/python-modules/impacket/default.nix index 3e5db5b39678..ea84a200ed7c 100644 --- a/pkgs/development/python-modules/impacket/default.nix +++ b/pkgs/development/python-modules/impacket/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage -, chardet +, charset-normalizer +, dsinternals , fetchPypi , flask , ldapdomaindump @@ -14,18 +15,19 @@ buildPythonPackage rec { pname = "impacket"; - version = "0.10.0"; + version = "0.11.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-uOsCCiy7RxRmac/jHGS7Ln1kmdBJxJPWQYuXFvXHRYM="; + hash = "sha256-7kA5tNKu3o9fZEeLxZ+qyGA2eWviTeqNwY8An7CQXko="; }; propagatedBuildInputs = [ - chardet + charset-normalizer + dsinternals flask ldapdomaindump pyasn1 From f2c76c1725ff4b8ce7322aab86b553051e2e0214 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 29 Aug 2023 08:53:59 +0200 Subject: [PATCH 2/3] python311Packages.impacket: add myself as maintainer --- pkgs/development/python-modules/impacket/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/impacket/default.nix b/pkgs/development/python-modules/impacket/default.nix index ea84a200ed7c..b4863522c04b 100644 --- a/pkgs/development/python-modules/impacket/default.nix +++ b/pkgs/development/python-modules/impacket/default.nix @@ -49,6 +49,6 @@ buildPythonPackage rec { homepage = "https://github.com/SecureAuthCorp/impacket"; # Modified Apache Software License, Version 1.1 license = licenses.free; - maintainers = with maintainers; [ ]; + maintainers = with maintainers; [ fab ]; }; } From 2baed3b75fedf2662063acfe2104e846ac513338 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 29 Aug 2023 08:55:41 +0200 Subject: [PATCH 3/3] python311Packages.impacket: add changelog to meta --- pkgs/development/python-modules/impacket/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/impacket/default.nix b/pkgs/development/python-modules/impacket/default.nix index b4863522c04b..7c7542252601 100644 --- a/pkgs/development/python-modules/impacket/default.nix +++ b/pkgs/development/python-modules/impacket/default.nix @@ -47,6 +47,8 @@ buildPythonPackage rec { meta = with lib; { description = "Network protocols Constructors and Dissectors"; homepage = "https://github.com/SecureAuthCorp/impacket"; + changelog = "https://github.com/fortra/impacket/releases/tag/impacket_" + + replaceStrings [ "." ] [ "_" ] version; # Modified Apache Software License, Version 1.1 license = licenses.free; maintainers = with maintainers; [ fab ];