1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 bundlewrap,
7 passlib,
8 requests,
9}:
10
11buildPythonPackage rec {
12 pname = "bundlewrap-teamvault";
13 version = "3.1.5";
14 pyproject = true;
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-kwJnfPMIhQsahIZFVtFb/YFgMUrnDt8t8+eJrig/ZTU=";
19 };
20
21 nativeBuildInputs = [ setuptools ];
22
23 propagatedBuildInputs = [
24 bundlewrap
25 passlib
26 requests
27 ];
28
29 # upstream has no checks
30 doCheck = false;
31
32 pythonImportsCheck = [ "bwtv" ];
33
34 meta = with lib; {
35 homepage = "https://github.com/trehn/bundlewrap-teamvault";
36 description = "Pull secrets from TeamVault into your BundleWrap repo";
37 license = [ licenses.gpl3 ];
38 maintainers = [ ];
39 };
40}