about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/do/donpapi/package.nix
blob: 1271d67d398f66f8ea734501608a6c207096ae9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ lib
, python3
, fetchFromGitHub
}:

python3.pkgs.buildPythonApplication rec {
  pname = "donpapi";
  version = "1.2.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "login-securite";
    repo = "DonPAPI";
    rev = "refs/tags/V${version}";
    hash = "sha256-60aGnsr36X3mf91nH9ud0xyLBqKgzZ4ALucrLGpAuzQ=";
  };

  pythonRelaxDeps = [
    "cryptography"
    "impacket"
    "pyasn1"
  ];

  nativeBuildInputs = with python3.pkgs; [
    poetry-core
    pythonRelaxDepsHook
  ];

  propagatedBuildInputs = with python3.pkgs; [
    cryptography
    impacket
    lnkparse3
    pyasn1
    pyjwt
    setuptools
  ];

  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [
    "donpapi"
  ];

  meta = with lib; {
    description = "Tool for dumping DPAPI credentials remotely";
    homepage = "https://github.com/login-securite/DonPAPI";
    changelog = "https://github.com/login-securite/DonPAPI/releases/tag/V${version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ fab ];
    mainProgram = "donpapi";
  };
}