dogedns: 0.2.6 -> 0.2.8 (#340101)
[NixPkgs.git] / pkgs / development / python-modules / masky / default.nix
blob557a02dfcc9a8d828da7354fa83dc6ba6852da46
2   lib,
3   asn1crypto,
4   buildPythonPackage,
5   colorama,
6   cryptography,
7   fetchFromGitHub,
8   impacket,
9   pyasn1,
10   pythonOlder,
13 buildPythonPackage rec {
14   pname = "masky";
15   version = "0.2.0";
16   format = "setuptools";
18   disabled = pythonOlder "3.7";
20   src = fetchFromGitHub {
21     owner = "Z4kSec";
22     repo = "Masky";
23     rev = "refs/tags/v${version}";
24     hash = "sha256-npRuszHkxwjJ+B+q8eQywXPd0OX0zS+AfCro4TM83Uc=";
25   };
27   propagatedBuildInputs = [
28     asn1crypto
29     colorama
30     cryptography
31     impacket
32     pyasn1
33   ];
35   # Module has no tests
36   doCheck = false;
38   pythonImportsCheck = [ "masky" ];
40   meta = with lib; {
41     description = "Library to remotely dump domain credentials";
42     mainProgram = "masky";
43     homepage = "https://github.com/Z4kSec/Masky";
44     changelog = "https://github.com/Z4kSec/Masky/releases/tag/v${version}";
45     license = licenses.mit;
46     maintainers = with maintainers; [ elasticdog ];
47   };