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

buildPythonPackage {
  pname = "nixos-modules-contrib";
  version = "unstable-2021-01-20";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "nix-community";
    repo = "nixos-modules-contrib";
    rev = "81a1c2ef424dcf596a97b2e46a58ca73a1dd1ff8";
    hash = "sha256-/RSStpkAxWpUB5saQ8CmQZljFjJyUMOrR1+GiHJR2Tg=";
  };

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

  nativeBuildInputs = [
    poetry-core
  ];

  buildInputs = [
    nixops
  ];

  pythonImportsCheck = [ "nixos_modules_contrib" ];

  passthru.updateScript = unstableGitUpdater {};

  meta = with lib; {
    description = "Useful NixOS modules which may not belong in the Nixpkgs repository itself";
    homepage = "https://github.com/nix-community/nixos-modules-contrib";
    license = licenses.lgpl3;
    maintainers = [];
  };
}