forked from mirrors/nixpkgs
python310Packages.masky: init at 0.1.1
This commit is contained in:
parent
9d9bb3b9ae
commit
9746690d4a
48
pkgs/development/python-modules/masky/default.nix
Normal file
48
pkgs/development/python-modules/masky/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue