summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2021-06-19 10:33:02 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-06-19 11:00:33 -0700
commit59979f87460379fb2156e462a941b97ddf62ee3a (patch)
tree2a6b58844b0292360f51cb1cb958ada4b7b8df88
parentMerge pull request #127483 from NixOS/backport-127478-to-release-21.05 (diff)
downloadnixpkgs-59979f87460379fb2156e462a941b97ddf62ee3a.tar.gz
pythonPackages.impacket: 0.9.22 -> 0.9.23
Fixes CVE-2021-31800. https://github.com/SecureAuthCorp/impacket/releases/tag/impacket_0_9_23 (cherry picked from commit 31c39c11ca197f2e64ca90dcb329ff052d9bde68)
-rw-r--r--pkgs/development/python-modules/impacket/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/impacket/default.nix b/pkgs/development/python-modules/impacket/default.nix
index 15d148f168f1..43fdfb6a9cee 100644
--- a/pkgs/development/python-modules/impacket/default.nix
+++ b/pkgs/development/python-modules/impacket/default.nix
@@ -1,15 +1,15 @@
-{ lib, buildPythonPackage, fetchPypi, flask, ldapdomaindump, pycryptodomex, pyasn1, pyopenssl }:
+{ lib, buildPythonPackage, fetchPypi, flask, ldapdomaindump, pycryptodomex, pyasn1, pyopenssl, chardet }:
buildPythonPackage rec {
pname = "impacket";
- version = "0.9.22";
+ version = "0.9.23";
src = fetchPypi {
inherit pname version;
- sha256 = "4bf7e7b595356585599b4b2773b8a463d7b9765c97012dcd5a44eb6d547f6a1d";
+ sha256 = "113isxb9rd2n761nnh3skg3vqa0v5dalz9kbavyczqyv1jjyh6qw";
};
- propagatedBuildInputs = [ flask ldapdomaindump pycryptodomex pyasn1 pyopenssl ];
+ propagatedBuildInputs = [ flask ldapdomaindump pycryptodomex pyasn1 pyopenssl chardet ];
# fail with:
# RecursionError: maximum recursion depth exceeded
@@ -18,7 +18,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Network protocols Constructors and Dissectors";
- homepage = "https://github.com/CoreSecurity/impacket";
+ homepage = "https://github.com/SecureAuthCorp/impacket";
# Modified Apache Software License, Version 1.1
license = licenses.free;
maintainers = with maintainers; [ SuperSandro2000 ];