nixpkgs/pkgs/development/python-modules/azure-eventgrid/default.nix
2021-11-23 21:53:03 -08:00

38 lines
819 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, msrest
, azure-common
, azure-core
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-eventgrid";
version = "4.7.1";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "b96afc0317c764c2c428512485305ec5748698081cb6bc70dcaa903b0ac04754";
};
propagatedBuildInputs = [
azure-common
azure-core
msrest
msrestazure
];
# has no tests
doCheck = false;
pythonImportsCheck = [ "azure.eventgrid" ];
meta = with lib; {
description = "A fully-managed intelligent event routing service that allows for uniform event consumption using a publish-subscribe model";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};
}