0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

python312Packages.azure-mgmt-hdinsight: modernize

This commit is contained in:
dish 2024-12-05 12:54:04 -05:00
parent d6a797d5c9
commit 6faab9df81
No known key found for this signature in database

View file

@ -5,7 +5,6 @@
buildPythonPackage,
fetchPypi,
msrest,
pythonOlder,
setuptools,
}:
@ -14,8 +13,6 @@ buildPythonPackage rec {
version = "9.0.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-QevcacDR+B0l3TBDjBT/9DMfZmOfVYBbkYuWSer/54o=";
@ -33,16 +30,17 @@ buildPythonPackage rec {
# no tests included
doCheck = false;
pythonNamespaces = [ "azure.mgmt" ];
pythonImportsCheck = [
"azure.common"
"azure.mgmt.hdinsight"
];
meta = with lib; {
meta = {
description = "Microsoft Azure HDInsight Management Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/hdinsight/azure-mgmt-hdinsight";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-hdinsight_${version}/sdk/hdinsight/azure-mgmt-hdinsight/CHANGELOG.md";
license = licenses.mit;
license = lib.licenses.mit;
maintainers = [ ];
};
}