Merge pull request #251229 from fabaff/azure-mgmt-appcontainers-bump

python311Packages.azure-mgmt-appcontainers: 2.0.0 -> 3.0.0
This commit is contained in:
OTABI Tomoya 2023-08-25 12:46:17 +09:00 committed by GitHub
commit 7c319a8fd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,32 +4,36 @@
, pythonOlder
, azure-common
, azure-mgmt-core
, msrest
, msrestazure
, isodate
, typing-extensions
}:
buildPythonPackage rec {
version = "2.0.0";
pname = "azure-mgmt-appcontainers";
version = "3.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ccdIdvdgTYPWEZCWqkLc8lEuMuAEERvl5B1huJyBkvU=";
extension = "zip";
hash = "sha256-oqKPEOnZaIU7IMzDqT552IBJr9RtWt3vFO3SlG8igs0=";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
msrestazure
isodate
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
# no tests included
doCheck = false;
pythonImportsCheck = [ "azure.mgmt.appcontainers" ];
pythonImportsCheck = [
"azure.mgmt.appcontainers"
];
meta = with lib; {
description = "Microsoft Azure Appcontainers Management Client Library for Python";