1{ lib
2, buildPythonPackage
3, fetchPypi
4, azure-common
5, requests
6}:
7
8buildPythonPackage rec {
9 version = "0.20.7";
10 pname = "azure-servicemanagement-legacy";
11
12 src = fetchPypi {
13 inherit version pname;
14 extension = "zip";
15 sha256 = "1kcibw17qm8c02y28xabm3k1zrawi6g4q8kzc751l5l3vagqnf2x";
16 };
17
18 propagatedBuildInputs = [
19 azure-common
20 requests
21 ];
22
23 pythonNamespaces = [ "azure" ];
24 # has no tests
25 doCheck = false;
26 pythonImportsCheck = [ "azure.servicemanagement" ];
27
28 meta = with lib; {
29 description = "This is the Microsoft Azure Service Management Legacy Client Library";
30 homepage = "https://github.com/Azure/azure-sdk-for-python";
31 license = licenses.mit;
32 maintainers = with maintainers; [ olcai maxwilson ];
33 };
34}