python311Packages.azure-batch: 14.0.0 -> 14.1.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-batch_14.1.0/sdk/batch/azure-batch/CHANGELOG.md
This commit is contained in:
Fabian Affolter
2024-02-01 20:33:16 +01:00
parent 3909c8eded
commit 5d25dcebdd
@@ -1,29 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, azure-common
, msrestazure
, azure-common
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "azure-batch";
version = "14.0.0";
format = "setuptools";
version = "14.1.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-FlsembhvghAkxProX7NIadQHqg67DKS5b7JthZwmyTQ=";
hash = "sha256-lhayyqYpx0ABItaF1VfrzQF5famImQgxj5pUdIQ5es0=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
msrest
msrestazure
azure-common
msrestazure
];
# Module has no tests
@@ -35,7 +37,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "This is the Microsoft Azure Batch 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-batch";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-batch_${version}/sdk/batch/azure-batch/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};