Files
nixpkgs/pkgs/development/python-modules/dploot/default.nix
2025-09-07 15:17:39 +00:00

54 lines
928 B
Nix

{
lib,
buildPythonPackage,
cryptography,
fetchPypi,
impacket,
lxml,
poetry-core,
pyasn1,
pythonOlder,
}:
buildPythonPackage rec {
pname = "dploot";
version = "3.1.3";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-xCw4mAP9CUtcTeQQ//4zI0BcQUmTai9hvYSZ9F9k4rc=";
};
pythonRelaxDeps = [
"cryptography"
"lxml"
"pyasn1"
];
build-system = [ poetry-core ];
dependencies = [
impacket
cryptography
pyasn1
lxml
];
pythonImportsCheck = [ "dploot" ];
# No tests
doCheck = false;
meta = with lib; {
description = "DPAPI looting remotely in Python";
homepage = "https://github.com/zblurx/dploot";
changelog = "https://github.com/zblurx/dploot/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ vncsb ];
mainProgram = "dploot";
};
}