Skip to content

Commit

Permalink
Merge pull request NixOS#268666 from fabaff/azure-eventhub-bump
Browse files Browse the repository at this point in the history
python311Packages.azure-eventhub: 5.11.4 -> 5.11.5
  • Loading branch information
fabaff authored Nov 20, 2023
2 parents bd6015d + 79e743f commit f50d8ff
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions pkgs/development/python-modules/azure-eventhub/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,24 @@
, buildPythonPackage
, fetchPypi
, azure-core
, uamqp
, pythonOlder
, typing-extensions
}:

buildPythonPackage rec {
pname = "azure-eventhub";
version = "5.11.4";
version = "5.11.5";
format = "setuptools";

disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-aLiaNRUEDxF2+bSWxMdtOBwQd3mu13V8u7mj2r4wqCM=";
hash = "sha256-HDdOmQezNIPVCLTHst8p+crGM15dpaGNIYU0+UL01Uw=";
};

propagatedBuildInputs = [
azure-core
uamqp
typing-extensions
];

Expand Down

0 comments on commit f50d8ff

Please sign in to comment.