Merge pull request #279143 from fabaff/azure-mgmt-batch-bump

python311Packages.azure-mgmt-batch: 17.1.0 -> 17.2.0
This commit is contained in:
Fabian Affolter 2024-01-07 09:58:53 +01:00 committed by GitHub
commit 3cea5c6659
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,39 +1,46 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-core
, buildPythonPackage
, fetchPypi
, isodate
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "azure-mgmt-batch";
version = "17.1.0";
format = "setuptools";
version = "17.2.0";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-OFv5IImNwtWAeGX75FAZ8QzfvvZRxtv6R0WoQlJduvs=";
hash = "sha256-ihXjijfW5OzilXPegIxaiSdsmfJSDqHzUrhqcEyJhY0=";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
azure-mgmt-core
nativeBuildInputs = [
setuptools
];
# Module has no tests
propagatedBuildInputs = [
azure-common
azure-mgmt-core
isodate
];
# Tests are only available in mono repo
doCheck = false;
pythonImportsCheck = [
"azure.mgmt.batch"
];
meta = with lib; {
description = "This is the Microsoft Azure Batch Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/batch/azure-mgmt-batch";
changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-batch_${version}/sdk/batch/azure-mgmt-batch";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};