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

knowsmore: 0.1.37 -> 0.1.38
This commit is contained in:
Fabian Affolter 2024-05-08 00:06:19 +02:00 committed by GitHub
commit 0169fd142d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,21 +1,33 @@
{ 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";
};
}