python3Packages.azure-mgmt-containerregistrytasks: init at 1.0.0b1

Amp-Thread-ID: https://ampcode.com/threads/T-019d87a4-1a3f-74c7-a2a7-5a95af00505c
Co-authored-by: Amp <amp@ampcode.com>

Signed-off-by: Paul Meyer <katexochen0@gmail.com>
This commit is contained in:
Paul Meyer
2026-04-13 18:46:36 +02:00
parent 9c47c8f02b
commit e7209af079
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,45 @@
{
lib,
buildPythonPackage,
fetchPypi,
azure-common,
azure-mgmt-core,
isodate,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "azure-mgmt-containerregistrytasks";
version = "1.0.0b1";
pyproject = true;
src = fetchPypi {
pname = "azure_mgmt_containerregistrytasks";
inherit version;
hash = "sha256-1nMN1cm/yp/fD+D5M3BtPH+4VcoQxWhQZQsHDpxsr1E=";
};
build-system = [ setuptools ];
dependencies = [
azure-common
azure-mgmt-core
isodate
typing-extensions
];
# no tests included
doCheck = false;
pythonImportsCheck = [
"azure.mgmt.containerregistrytasks"
];
meta = {
description = "Microsoft Azure Container Registry Tasks Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/containerregistry/azure-mgmt-containerregistrytasks";
license = lib.licenses.mit;
maintainers = [ ];
};
}
+4
View File
@@ -1493,6 +1493,10 @@ self: super: with self; {
callPackage ../development/python-modules/azure-mgmt-containerregistry
{ };
azure-mgmt-containerregistrytasks =
callPackage ../development/python-modules/azure-mgmt-containerregistrytasks
{ };
azure-mgmt-containerservice =
callPackage ../development/python-modules/azure-mgmt-containerservice
{ };