pre2k: refactor

This commit is contained in:
Fabian Affolter
2025-07-11 13:46:40 +02:00
parent 0fbd540abe
commit d45251f033
+4 -8
View File
@@ -23,11 +23,9 @@ python3.pkgs.buildPythonApplication rec {
"typer"
];
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
build-system = with python3.pkgs; [ poetry-core ];
propagatedBuildInputs = with python3.pkgs; [
dependencies = with python3.pkgs; [
impacket
ldap3
pyasn1
@@ -35,14 +33,12 @@ python3.pkgs.buildPythonApplication rec {
typer
];
pythonImportsCheck = [
"pre2k"
];
pythonImportsCheck = [ "pre2k" ];
meta = {
description = "Tool to query for the existence of pre-windows 2000 computer objects";
homepage = "https://github.com/garrettfoster13/pre2k";
changelog = "https://github.com/garrettfoster13/pre2k/releases/tag/${version}";
changelog = "https://github.com/garrettfoster13/pre2k/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "pre2k";