python311Packages.bundlewrap-teamvault: init at 3.1.5

This commit is contained in:
hexchen 2023-11-08 12:19:36 +00:00
parent 4a04be9a3c
commit 4175642bd1
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ 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; [ hexchen ];
};
}

View File

@ -1804,6 +1804,8 @@ self: super: with self; {
bundlewrap = callPackage ../development/python-modules/bundlewrap { };
bundlewrap-teamvault = callPackage ../development/python-modules/bundlewrap-teamvault { };
busypie = callPackage ../development/python-modules/busypie { };
bx-py-utils = callPackage ../development/python-modules/bx-py-utils { };