Unverified Commit e246cb30 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #281944 from r-ryantm/auto-update/keepwn

keepwn: 0.1 -> 0.3
parents 2a3dd735 b3ef821c
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
@@ -6,20 +6,27 @@

python3.pkgs.buildPythonApplication rec {
  pname = "keepwn";
  version = "0.1";
  format = "setuptools";
  version = "0.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Orange-Cyberdefense";
    repo = "KeePwn";
    rev = "refs/tags/${version}";
    hash = "sha256-s+r6QEUzkzCbs5j1G+PVgDx8cvnmQzEQ1MHAakG+skA=";
    hash = "sha256-haKWuoTtyC9vIise+gznruHEwMIDz1W6euihLLKnSdc=";
  };

  nativeBuildInputs = with python3.pkgs; [
    setuptools
  ];

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