about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bundlewrap-teamvault/default.nix
blob: a8dd57f15b788587c9c3672a294f82c9c07dd524 (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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  bundlewrap,
  passlib,
  requests,
}:

buildPythonPackage rec {
  pname = "bundlewrap-teamvault";
  version = "3.1.5";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-kwJnfPMIhQsahIZFVtFb/YFgMUrnDt8t8+eJrig/ZTU=";
  };

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [
    bundlewrap
    passlib
    requests
  ];

  # upstream has no checks
  doCheck = false;

  pythonImportsCheck = [ "bwtv" ];

  meta = with lib; {
    homepage = "https://github.com/trehn/bundlewrap-teamvault";
    description = "Pull secrets from TeamVault into your BundleWrap repo";
    license = [ licenses.gpl3 ];
    maintainers = with maintainers; [ ];
  };
}