1{ azure-common
2, azure-mgmt-core
3, buildPythonPackage
4, fetchPypi
5, lib
6, msrest
7, msrestazure
8}:
9
10buildPythonPackage rec {
11 pname = "azure-mgmt-frontdoor";
12 version = "1.1.0";
13
14 src = fetchPypi {
15 inherit pname version;
16 extension = "zip";
17 sha256 = "sha256-GqrJNNcQrNffgqRywgaJ2xkwy+fOJai/RlSVkpw6NWg=";
18 };
19
20 propagatedBuildInputs = [
21 msrest
22 msrestazure
23 azure-common
24 azure-mgmt-core
25 ];
26
27 # has no tests
28 doCheck = false;
29
30 pythonImportsCheck = [ "azure.mgmt.frontdoor" ];
31
32 meta = with lib; {
33 description = "Microsoft Azure Front Door Service Client Library for Python";
34 homepage = "https://github.com/Azure/azure-sdk-for-python";
35 license = licenses.mit;
36 maintainers = with maintainers; [ sephi ];
37 };
38}