Commit b3ef821c authored by Fabian Affolter's avatar Fabian Affolter
Browse files

keepwn: refactor

parent 04b74986
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
python3.pkgs.buildPythonApplication rec {
  pname = "keepwn";
  version = "0.3";
  format = "setuptools";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Orange-Cyberdefense";
@@ -16,10 +16,17 @@ python3.pkgs.buildPythonApplication rec {
    hash = "sha256-haKWuoTtyC9vIise+gznruHEwMIDz1W6euihLLKnSdc=";
  };

  nativeBuildInputs = with python3.pkgs; [
    setuptools
  ];

  propagatedBuildInputs = with python3.pkgs; [
    chardet
    impacket
    lxml
    pefile
    pykeepass
    python-magic
    termcolor
  ];