diff --git a/pkgs/development/python-modules/azure-mgmt-containerregistrytasks/default.nix b/pkgs/development/python-modules/azure-mgmt-containerregistrytasks/default.nix new file mode 100644 index 000000000000..9e58465abe36 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-containerregistrytasks/default.nix @@ -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 = [ ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8350b4d38e44..2c8507935b31 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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 { };