mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
python3Packages.azure-keyvault-securitydomain: init at 1.0.0b1
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
This commit is contained in:
parent
3ac76b8cc7
commit
ebd6d1eaa3
2 changed files with 48 additions and 0 deletions
|
@ -0,0 +1,44 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchPypi,
|
||||||
|
setuptools,
|
||||||
|
wheel,
|
||||||
|
azure-core,
|
||||||
|
isodate,
|
||||||
|
typing-extensions,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "azure-keyvault-securitydomain";
|
||||||
|
version = "1.0.0b1";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
pname = "azure_keyvault_securitydomain";
|
||||||
|
inherit version;
|
||||||
|
hash = "sha256-MpGhked4qUfkso7QEyeJKpOu3PjgoN1nTPEWyxEEN3Y=";
|
||||||
|
};
|
||||||
|
|
||||||
|
build-system = [
|
||||||
|
setuptools
|
||||||
|
wheel
|
||||||
|
];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
azure-core
|
||||||
|
isodate
|
||||||
|
typing-extensions
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"azure.keyvault.securitydomain"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Microsoft Corporation Azure Keyvault Securitydomain Client Library for Python";
|
||||||
|
homepage = "https://pypi.org/project/azure-keyvault-securitydomain/1.0.0b1/";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ katexochen ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1295,6 +1295,10 @@ self: super: with self; {
|
||||||
|
|
||||||
azure-keyvault-secrets = callPackage ../development/python-modules/azure-keyvault-secrets { };
|
azure-keyvault-secrets = callPackage ../development/python-modules/azure-keyvault-secrets { };
|
||||||
|
|
||||||
|
azure-keyvault-securitydomain =
|
||||||
|
callPackage ../development/python-modules/azure-keyvault-securitydomain
|
||||||
|
{ };
|
||||||
|
|
||||||
azure-kusto-data = callPackage ../development/python-modules/azure-kusto-data { };
|
azure-kusto-data = callPackage ../development/python-modules/azure-kusto-data { };
|
||||||
|
|
||||||
azure-kusto-ingest = callPackage ../development/python-modules/azure-kusto-ingest { };
|
azure-kusto-ingest = callPackage ../development/python-modules/azure-kusto-ingest { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue