pythonPackages.azure-servicebus: init at 0.50.0
This commit is contained in:
parent
56a49133bd
commit
1921e31873
2 changed files with 40 additions and 0 deletions
38
pkgs/development/python-modules/azure-servicebus/default.nix
Normal file
38
pkgs/development/python-modules/azure-servicebus/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, uamqp
|
||||
, azure-common
|
||||
, msrestazure
|
||||
, futures
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-servicebus";
|
||||
version = "0.50.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "c5864cfc69402e3e2897e61b3bd224ade28d9e33dad849e4bd6afad26a3d2786";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
uamqp
|
||||
azure-common
|
||||
msrestazure
|
||||
] ++ lib.optionals (!isPy3k) [
|
||||
futures
|
||||
];
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "This is the Microsoft Azure Service Bus Client Library";
|
||||
homepage = https://github.com/Azure/azure-sdk-for-python/free/master/azure-servicebus;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mwilsoninsight ];
|
||||
};
|
||||
}
|
|
@ -260,6 +260,8 @@ in {
|
|||
|
||||
azure-loganalytics = callPackage ../development/python-modules/azure-loganalytics { };
|
||||
|
||||
azure-servicebus = callPackage ../development/python-modules/azure-servicebus { };
|
||||
|
||||
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
||||
|
||||
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
||||
|
|
Loading…
Reference in a new issue