chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pr / pre2k / package.nix
blob98b763cb011dfdc3aff3c0b6b16834a71e67d5fe
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "pre2k";
8   version = "3.0";
9   pyproject = true;
11   src = fetchFromGitHub {
12     owner = "garrettfoster13";
13     repo = "pre2k";
14     rev = "refs/tags/${version}";
15     hash = "sha256-z1ttuRos7x/zdWiYYozxWzRarFExd4W5rUYAEiUMugU=";
16   };
18   pythonRelaxDeps = [
19     "impacket"
20     "pyasn1"
21     "rich"
22     "typer"
23   ];
25   nativeBuildInputs = with python3.pkgs; [
26     poetry-core
27   ];
29   propagatedBuildInputs = with python3.pkgs; [
30     impacket
31     ldap3
32     pyasn1
33     rich
34     typer
35   ];
37   pythonImportsCheck = [
38     "pre2k"
39   ];
41   meta = with lib; {
42     description = "Tool to query for the existence of pre-windows 2000 computer objects";
43     homepage = "https://github.com/garrettfoster13/pre2k";
44     changelog = "https://github.com/garrettfoster13/pre2k/releases/tag/${version}";
45     license = licenses.mit;
46     maintainers = with maintainers; [ fab ];
47     mainProgram = "pre2k";
48   };