mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-11 03:08:04 +00:00
49 lines
889 B
Nix
49 lines
889 B
Nix
{
|
|
lib,
|
|
asn1crypto,
|
|
buildPythonPackage,
|
|
colorama,
|
|
cryptography,
|
|
fetchFromGitHub,
|
|
impacket,
|
|
pyasn1,
|
|
setuptools_80,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "masky";
|
|
version = "0.2.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Z4kSec";
|
|
repo = "Masky";
|
|
tag = "v${version}";
|
|
hash = "sha256-npRuszHkxwjJ+B+q8eQywXPd0OX0zS+AfCro4TM83Uc=";
|
|
};
|
|
|
|
build-system = [ setuptools_80 ];
|
|
|
|
dependencies = [
|
|
asn1crypto
|
|
colorama
|
|
cryptography
|
|
impacket
|
|
pyasn1
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "masky" ];
|
|
|
|
meta = {
|
|
description = "Library to remotely dump domain credentials";
|
|
mainProgram = "masky";
|
|
homepage = "https://github.com/Z4kSec/Masky";
|
|
changelog = "https://github.com/Z4kSec/Masky/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|