Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
932 B
Nix
49 lines
932 B
Nix
{
|
|
lib,
|
|
asn1crypto,
|
|
buildPythonPackage,
|
|
colorama,
|
|
cryptography,
|
|
fetchFromGitHub,
|
|
impacket,
|
|
pyasn1,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "masky";
|
|
version = "0.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Z4kSec";
|
|
repo = "Masky";
|
|
tag = "v${version}";
|
|
hash = "sha256-npRuszHkxwjJ+B+q8eQywXPd0OX0zS+AfCro4TM83Uc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
asn1crypto
|
|
colorama
|
|
cryptography
|
|
impacket
|
|
pyasn1
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "masky" ];
|
|
|
|
meta = with lib; {
|
|
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 = licenses.mit;
|
|
maintainers = with maintainers; [ elasticdog ];
|
|
};
|
|
}
|