1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 msrest,
6 msrestazure,
7 azure-common,
8 azure-mgmt-core,
9 azure-mgmt-nspkg,
10}:
11
12buildPythonPackage rec {
13 pname = "azure-mgmt-notificationhubs";
14 version = "8.0.0";
15 format = "setuptools";
16
17 src = fetchPypi {
18 inherit pname version;
19 extension = "zip";
20 sha256 = "4dd924f4704993e3ebf1d42e2be1cbe0b0d908e695857fa08c4369ae11d0eb36";
21 };
22
23 propagatedBuildInputs = [
24 msrest
25 msrestazure
26 azure-common
27 azure-mgmt-core
28 azure-mgmt-nspkg
29 ];
30
31 # has no tests
32 doCheck = false;
33
34 meta = with lib; {
35 description = "This is the Microsoft Azure Notification Hubs Management Client Library";
36 homepage = "https://github.com/Azure/azure-sdk-for-python";
37 license = licenses.mit;
38 maintainers = with maintainers; [ maxwilson ];
39 };
40}