pythonPackages.azure-mgmt-servicebus: init at 0.6.0

This commit is contained in:
Max Wilson 2019-04-29 19:00:42 -04:00 committed by Wael M. Nasreddine
parent d98b22b174
commit 0795e4b362
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-nspkg
, isPy3k
}:
buildPythonPackage rec {
pname = "azure-mgmt-servicebus";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "f20920b8fb119ef4abeda4d2dac765a4fc48cd0bcf30c27f8c4cc6d890bc08b1";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Service Bus Management Client Library";
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/servicebus?view=azure-python;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View File

@ -386,6 +386,8 @@ in {
azure-mgmt-search = callPackage ../development/python-modules/azure-mgmt-search { };
azure-mgmt-servicebus = callPackage ../development/python-modules/azure-mgmt-servicebus { };
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };
backports_csv = callPackage ../development/python-modules/backports_csv {};