summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/nixops/plugins/nixops-hetzner.nix
blob: c4d037fe75f5a695b7bd3b6e971641f5e16b497a (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
54
{ lib
, buildPythonPackage
, fetchFromGitHub
, unstableGitUpdater
, poetry-core
, hetzner
, nixops
, nixos-modules-contrib
, typing-extensions
}:

buildPythonPackage {
  pname = "nixops-hetzner";
  version = "unstable-2022-04-23";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "NixOS";
    repo = "nixops-hetzner";
    rev = "bc7a68070c7371468bcc8bf6e36baebc6bd2da35";
    hash = "sha256-duK1Ui4VpbGSgGvfjTOddHSqHZ1FSy4L9Egg+FvZv04=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
    --replace poetry.masonry.api poetry.core.masonry.api \
    --replace "poetry>=" "poetry-core>="
  '';

  nativeBuildInputs = [
    poetry-core
  ];

  buildInputs = [
    nixops
  ];

  propagatedBuildInputs = [
    hetzner
    nixos-modules-contrib
    typing-extensions
  ];

  pythonImportsCheck = [ "nixops_hetzner" ];

  passthru.updateScript = unstableGitUpdater {};

  meta = with lib; {
    description = "Hetzner bare metal NixOps plugin";
    homepage = "https://github.com/NixOS/nixops-hetzner";
    license = licenses.mit;
    maintainers = nixops.meta.maintainers;
  };
}