about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/nixops/plugins/nixops-encrypted-links.nix
blob: 0dddf771bd517c11326d1be54a5341ad3c4dc976 (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 = "nixops-encrypted-links";
  version = "unstable-2021-02-16";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "nix-community";
    repo = "nixops-encrypted-links";
    rev = "e2f196fce15fcfb00d18c055e1ac53aec33b8fb1";
    hash = "sha256-1TTbARyCfrLxF6SVNkmIKNNcLS9FVW22d9w0VRrH1os=";
  };

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

  nativeBuildInputs = [
    poetry-core
  ];

  buildInputs = [
    nixops
  ];

  pythonImportsCheck = [ "nixops_encrypted_links" ];

  passthru.updateScript = unstableGitUpdater {};

  meta = with lib; {
    description = "EncryptedLinksTo from Nixops 1 module port";
    homepage = "https://github.com/nix-community/nixops-encrypted-links";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}