lol

python312Packages.azure-mgmt-batchai: 2.0.0 -> 7.0.0

Signed-off-by: Paul Meyer <katexochen0@gmail.com>

+12 -9
+12 -9
pkgs/development/python-modules/azure-mgmt-batchai/default.nix
··· 4 4 fetchPypi, 5 5 azure-common, 6 6 azure-mgmt-core, 7 - azure-mgmt-nspkg, 8 - msrestazure, 7 + isodate, 8 + pythonOlder, 9 + typing-extensions, 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "azure-mgmt-batchai"; 13 - version = "2.0.0"; 14 + version = "7.0.0"; 14 15 format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 15 18 16 19 src = fetchPypi { 17 - inherit pname version; 18 - extension = "zip"; 19 - sha256 = "f1870b0f97d5001cdb66208e5a236c9717a0ed18b34dbfdb238a828f3ca2a683"; 20 + inherit version; 21 + pname = "azure_mgmt_batchai"; 22 + hash = "sha256-XfAE/QyST8ZVlJR6nP9Pdgh97hfIhFM6G7sLINsn06M="; 20 23 }; 21 24 22 25 propagatedBuildInputs = [ 23 - msrestazure 26 + isodate 24 27 azure-common 25 28 azure-mgmt-core 26 - azure-mgmt-nspkg 27 - ]; 29 + ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; 28 30 29 31 pythonNamespaces = [ "azure.mgmt" ]; 30 32 ··· 34 36 meta = with lib; { 35 37 description = "This is the Microsoft Azure Batch AI Management Client Library"; 36 38 homepage = "https://github.com/Azure/azure-sdk-for-python"; 39 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-batchai_${version}/sdk/batchai/azure-mgmt-batchai/CHANGELOG.md"; 37 40 license = licenses.mit; 38 41 maintainers = with maintainers; [ maxwilson ]; 39 42 };