forked from mirrors/nixpkgs
python3Packages.azure-eventgrid: disable on older Python releases
This commit is contained in:
parent
5aa899c606
commit
f81323c832
|
@ -5,16 +5,20 @@
|
|||
, azure-common
|
||||
, azure-core
|
||||
, msrestazure
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-eventgrid";
|
||||
version = "4.8.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "sha256-8jEtTQTUJLSa2iuA/Sgirgcm8kbwWOT11O1n46CLouw=";
|
||||
hash = "sha256-8jEtTQTUJLSa2iuA/Sgirgcm8kbwWOT11O1n46CLouw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -26,7 +30,10 @@ buildPythonPackage rec {
|
|||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "azure.eventgrid" ];
|
||||
|
||||
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";
|
||||
|
|
Loading…
Reference in a new issue