Merge pull request #248901 from fabaff/impacket-bump

python311Packages.impacket: 0.10.0 -> 0.11.0
This commit is contained in:
Matthias Beyer 2023-08-29 10:27:34 +02:00 committed by GitHub
commit a4dd898cf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
@ -45,8 +47,10 @@ 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; [ ];
maintainers = with maintainers; [ fab ];
};
}