12 buildPythonPackage rec {
13 pname = "azure-mgmt-recoveryservices";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 hash = "sha256-3yEt+t+8xlnDEjHD4XCqt8IRRNFysPiCaKsPWtjpWII=";
24 propagatedBuildInputs = [
28 ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
33 pythonImportsCheck = [ "azure.mgmt.recoveryservices" ];
36 description = "This is the Microsoft Azure Recovery Services Client Library";
37 homepage = "https://github.com/Azure/azure-sdk-for-python";
38 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-recoveryservices_${version}/sdk/recoveryservices/azure-mgmt-recoveryservices/CHANGELOG.md";
39 license = licenses.mit;
40 maintainers = with maintainers; [ maxwilson ];