forked from mirrors/nixpkgs
Merge pull request #172425 from dotlambda/azure-eventhub-5.9.0
python3Packages.azure-eventhub: 5.7.0 -> 5.9.0
This commit is contained in:
commit
b70f347c90
|
@ -3,21 +3,27 @@
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, azure-core
|
, azure-core
|
||||||
, uamqp
|
, uamqp
|
||||||
|
, pythonOlder
|
||||||
|
, typing-extensions
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "azure-eventhub";
|
pname = "azure-eventhub";
|
||||||
version = "5.7.0";
|
version = "5.9.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
extension = "zip";
|
extension = "zip";
|
||||||
sha256 = "6ac364e5f1c5b376604c3b5a25ad0be5e3a5f96368f590e05b47e6745f1006ee";
|
sha256 = "509c6b351db0c1674a7c33308e6ffebc5a9bd2b0a9d10bcb2fa3d0a3a47d42d0";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
azure-core
|
azure-core
|
||||||
uamqp
|
uamqp
|
||||||
|
typing-extensions
|
||||||
];
|
];
|
||||||
|
|
||||||
# too complicated to set up
|
# too complicated to set up
|
||||||
|
@ -31,6 +37,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Microsoft Azure Event Hubs Client Library for Python";
|
description = "Microsoft Azure Event Hubs Client Library for Python";
|
||||||
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/eventhub/azure-eventhub";
|
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/eventhub/azure-eventhub";
|
||||||
|
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-eventhub_${version}/sdk/eventhub/azure-eventhub/CHANGELOG.md";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ dotlambda ];
|
maintainers = with maintainers; [ dotlambda ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue