python3Packages.azure-mgmt-iothub: 3.0.0 -> 4.0.0

https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-iothub_4.0.0/sdk/iothub/azure-mgmt-iothub/CHANGELOG.md

This commit was automatically generated using update-python-libraries.

Changed files
+10 -11
pkgs
development
python-modules
azure-mgmt-iothub
+10 -11
pkgs/development/python-modules/azure-mgmt-iothub/default.nix
···
buildPythonPackage,
fetchPypi,
isodate,
-
pythonOlder,
-
typing-extensions,
+
setuptools,
}:
buildPythonPackage rec {
pname = "azure-mgmt-iothub";
-
version = "3.0.0";
-
format = "setuptools";
-
-
disabled = pythonOlder "3.7";
+
version = "4.0.0";
+
pyproject = true;
src = fetchPypi {
-
inherit pname version;
-
hash = "sha256-2vIfyYxoo1PsYWMYwOYr4EyNaJmWC+jCy/mRZzrItyI=";
+
pname = "azure_mgmt_iothub";
+
inherit version;
+
hash = "sha256-B/Jb1vZzdLqxfMEZL5+SGzUONWAlHxkGnmZlg1Qe1Ng=";
};
-
propagatedBuildInputs = [
+
build-system = [ setuptools ];
+
+
dependencies = [
azure-common
azure-mgmt-core
isodate
-
]
-
++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
+
];
# Module has no tests
doCheck = false;