python310Packages.masky: init at 0.1.1

This commit is contained in:
Fabian Affolter 2022-11-22 23:50:11 +01:00
parent 9d9bb3b9ae
commit 9746690d4a
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{ lib
, asn1crypto
, buildPythonPackage
, colorama
, cryptography
, fetchFromGitHub
, impacket
, pyasn1
, pythonOlder
}:
buildPythonPackage rec {
pname = "masky";
version = "0.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Z4kSec";
repo = "Masky";
rev = "refs/tags/v${version}";
hash = "sha256-uxq4SBudxFbBiV3Cu+oBRKezIWf5p+8VJlIIqQjtSXA=";
};
propagatedBuildInputs = [
asn1crypto
colorama
cryptography
impacket
pyasn1
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"masky"
];
meta = with lib; {
description = "Library to remotely dump domain credentials";
homepage = "https://github.com/Z4kSec/Masky";
changelog = "https://github.com/Z4kSec/Masky/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ elasticdog ];
};
}

View file

@ -5561,6 +5561,8 @@ self: super: with self; {
mask-rcnn = callPackage ../development/python-modules/mask-rcnn { };
masky = callPackage ../development/python-modules/masky { };
mastodon-py = callPackage ../development/python-modules/mastodon-py { };
mat2 = callPackage ../development/python-modules/mat2 { };