Merge pull request #234735 from r-ryantm/auto-update/python310Packages.azure-containerregistry
python310Packages.azure-containerregistry: 1.0.0 -> 1.1.0
This commit is contained in:
commit
d370d87d1b
@ -1,27 +1,41 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, azure-core
|
||||
, msrest
|
||||
, msrestazure
|
||||
, isodate
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-containerregistry";
|
||||
version = "1.0.0";
|
||||
disabled = pythonOlder "3.6";
|
||||
version = "1.1.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-DIZCHZM5aeKtmJrgwAk5J26ltaxNxKUn3rR+FbmuyZc=";
|
||||
hash = "sha256-6IU+fzMIL8HJv4rCrWlcJSuYre6cdBa7BjS9KrIbIRU=";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ azure-core msrest msrestazure ];
|
||||
propagatedBuildInputs = [
|
||||
azure-core
|
||||
msrest
|
||||
msrestazure
|
||||
isodate
|
||||
];
|
||||
|
||||
# tests require azure-devtools which are not published (since 2020)
|
||||
# https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/containerregistry/azure-containerregistry/dev_requirements.txt
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "azure.core" "azure.containerregistry" ];
|
||||
pythonImportsCheck = [
|
||||
"azure.core"
|
||||
"azure.containerregistry"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Microsoft Azure Container Registry client library for Python";
|
||||
|
Loading…
Reference in New Issue
Block a user