pythonPackages.azure-eventgrid: init at 1.2.0
This commit is contained in:
parent
c2d4ae671e
commit
850e7d62f0
34
pkgs/development/python-modules/azure-eventgrid/default.nix
Normal file
34
pkgs/development/python-modules/azure-eventgrid/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, msrest
|
||||||
|
, azure-common
|
||||||
|
, msrestazure
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "azure-eventgrid";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
extension = "zip";
|
||||||
|
sha256 = "7ebbe1c4266ba176aa4969d9755c08f10b89848ad50fb0bfd16fa82e29234f95";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
msrest
|
||||||
|
msrestazure
|
||||||
|
azure-common
|
||||||
|
];
|
||||||
|
|
||||||
|
# has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A fully-managed intelligent event routing service that allows for uniform event consumption using a publish-subscribe model";
|
||||||
|
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/event-grid?view=azure-python;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ mwilsoninsight ];
|
||||||
|
};
|
||||||
|
}
|
@ -252,6 +252,8 @@ in {
|
|||||||
|
|
||||||
azure-datalake-store = callPackage ../development/python-modules/azure-datalake-store { };
|
azure-datalake-store = callPackage ../development/python-modules/azure-datalake-store { };
|
||||||
|
|
||||||
|
azure-eventgrid = callPackage ../development/python-modules/azure-eventgrid { };
|
||||||
|
|
||||||
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
||||||
|
|
||||||
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
||||||
|
Loading…
Reference in New Issue
Block a user