12 buildPythonPackage rec {
13 pname = "azure-servicebus";
17 inherit pname version;
19 sha256 = "c5b3681ce4d7a44c223ddddfdec4c8d2eadede3b11b598ac09c4dbf4b729e89b";
22 propagatedBuildInputs = [
27 ] ++ lib.optionals (!isPy3k) [
34 # python2 will fail due to pep 420
35 pythonImportsCheck = lib.optionals isPy3k [ "azure.servicebus" ];
38 description = "This is the Microsoft Azure Service Bus Client Library";
39 homepage = "https://github.com/Azure/azure-sdk-for-python";
40 license = licenses.mit;
41 maintainers = with maintainers; [ maxwilson ];