e7209af079
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>
46 lines
941 B
Nix
46 lines
941 B
Nix
{
|
|
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 = [ ];
|
|
};
|
|
}
|