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

Merge pull request #309918 from r-ryantm/auto-update/knowsmore

knowsmore: 0.1.37 -> 0.1.38
parents c6501cb5 fbe5ef5f
Loading
Loading
Loading
Loading
+23 −17
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, python3
{
  lib,
  fetchFromGitHub,
  python3,
}:

python3.pkgs.buildPythonApplication rec {
  pname = "knowsmore";
  version = "0.1.37";
  format = "setuptools";
  version = "0.1.38";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "helviojunior";
    repo = "knowsmore";
    rev = "refs/tags/v${version}";
    hash = "sha256-UxBoWK3L4u9xSQaGGHpzvs/mRlmhF3EqiS/4BYyTKos=";
    hash = "sha256-A68JuzlWvq3OAtgq6uAFcTTYKmL7xjKWZ0HQfVXKt4k=";
  };

  propagatedBuildInputs = with python3.pkgs; [
  pythonRelaxDeps = [
    "neo4j"
    "urllib3"
  ];

  pythonRemoveDeps = [ "bs4" ];

  build-system = with python3.pkgs; [ setuptools ];

  nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];

  dependencies = with python3.pkgs; [
    aioconsole
    ansi2image
    beautifulsoup4
@@ -33,24 +45,18 @@ python3.pkgs.buildPythonApplication rec {
    xmltodict
  ];

  nativeCheckInputs = with python3.pkgs; [
    pytestCheckHook
  ];
  nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];

  pythonImportsCheck = [
    "knowsmore"
  ];
  pythonImportsCheck = [ "knowsmore" ];

  pytestFlagsArray = [
    "tests/tests*"
  ];
  pytestFlagsArray = [ "tests/tests*" ];

  meta = with lib; {
    description = "Tool for pentesting Microsoft Active Directory";
    mainProgram = "knowsmore";
    homepage = "https://github.com/helviojunior/knowsmore";
    changelog = "https://github.com/helviojunior/knowsmore/releases/tag/v${version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ fab ];
    mainProgram = "knowsmore";
  };
}