chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ce / certi / package.nix
blob90e929114b4d17eaf3b938168a14f8824680a1cd
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "certi";
8   version = "0.1.0-unstable-2023-01-27";
9   pyproject = true;
11   src = fetchFromGitHub {
12     owner = "zer1t0";
13     repo = "certi";
14     # https://github.com/zer1t0/certi/issues/6
15     rev = "6cfa656c6c0fcbbe9b9bce847b052c881202354e";
16     hash = "sha256-6j/Lwq68qyfEAo5MRibgdomrCO4KEd/DlAEwB+Z52Hc=";
17   };
19   nativeBuildInputs = with python3.pkgs; [
20     setuptools
21   ];
23   propagatedBuildInputs = with python3.pkgs; [
24     cryptography
25     impacket
26   ];
28   pythonImportsCheck = [
29     "certilib"
30   ];
32   meta = with lib; {
33     description = "ADCS abuser";
34     homepage = "https://github.com/zer1t0/certi";
35     license = licenses.agpl3Only;
36     maintainers = with maintainers; [ fab ];
37     mainProgram = "certi";
38   };