coercer: 1.6 -> 2.4.3
Fixes the build and relaxes the impacket constraint.
This commit is contained in:
parent
827ff3c828
commit
52472b72c2
1 changed files with 8 additions and 2 deletions
|
@ -5,22 +5,28 @@
|
|||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "coercer";
|
||||
version = "1.6";
|
||||
version = "2.4.3";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "p0dalirius";
|
||||
repo = "Coercer";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-xftYnwu6uUTvJTZU9E7wvdgBxqa8xy83K5GOlgNSCvc=";
|
||||
hash = "sha256-WeaKToKYIB+jjTNIQvAUQQNb25TsNWALYZwIZuBjkPE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
poetry-core
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"impacket"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
impacket
|
||||
xlsxwriter
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
|
|
Loading…
Reference in a new issue