Merge pull request #266258 from hexchen/bundlewrap-foo

bundlewrap-{keepass,pass,teamvault}: init at latest releases
This commit is contained in:
Ryan Lahfa 2024-04-17 00:37:58 +02:00 committed by GitHub
commit 3dfe42d78e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 115 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, bundlewrap
, pykeepass
}:
buildPythonPackage rec {
pname = "bundlewrap-keepass";
version = "0.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-P41VtI8VIqSp1IXe7fzKDBGmmXmDLRm7v1qV1g35IC4";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ bundlewrap pykeepass ];
# upstream has no checks
doCheck = false;
pythonImportsCheck = [
"bwkeepass"
];
meta = with lib; {
homepage = "https://pypi.org/project/bundlewrap-keepass";
description = "Use secrets from keepass in your BundleWrap repo";
license = licenses.gpl3;
maintainers = with maintainers; [ hexchen ];
};
}

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, bundlewrap
, pass
}:
buildPythonPackage rec {
pname = "bundlewrap-pass";
version = "1.0.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-3KmUTTOQ46TiKXNkKLRweMEe5m/zJ1gvAVJttJBdzik=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ bundlewrap pass ];
# upstream has no checks
doCheck = false;
pythonImportsCheck = [
"bwpass"
];
meta = with lib; {
homepage = "https://pypi.org/project/bundlewrap-pass";
description = "Use secrets from pass in your BundleWrap repo";
license = licenses.gpl3;
maintainers = with maintainers; [ hexchen ];
};
}

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,12 @@ self: super: with self; {
bundlewrap = callPackage ../development/python-modules/bundlewrap { };
bundlewrap-keepass = callPackage ../development/python-modules/bundlewrap-keepass { };
bundlewrap-pass = callPackage ../development/python-modules/bundlewrap-pass { };
bundlewrap-teamvault = callPackage ../development/python-modules/bundlewrap-teamvault { };
busypie = callPackage ../development/python-modules/busypie { };
bx-py-utils = callPackage ../development/python-modules/bx-py-utils { };