summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-09-11 18:22:30 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-09-13 00:32:55 -0700
commitcb5b2f7de7d0d5eae309e8ea1589b0a9b3a344c1 (patch)
treeeb93c36c01da83dc162e713fc36681ba003b3dbb /pkgs/development
parent3a7e5f6c25155e09f7fe4b9ccb13dde339007377 (diff)
python3Packages.azure-mgmt-iothubprovisioningservices: 0.2.0 -> 1.0.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix b/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix
index 3401ed898c8f..aab6f96edc24 100644
--- a/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix
@@ -2,27 +2,28 @@
, buildPythonPackage
, fetchPypi
, python
-, isPy3k
, msrest
, msrestazure
, azure-common
+, azure-mgmt-core
, azure-mgmt-nspkg
}:
buildPythonPackage rec {
pname = "azure-mgmt-iothubprovisioningservices";
- version = "0.2.0";
+ version = "1.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "8c37acfd1c33aba845f2e0302ef7266cad31cba503cc990a48684659acb7b91d";
+ sha256 = "sha256-5YcbA0iLWubfxEHNvaQMs5wABjXuV8UTBTeSs8FYJqk=";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
+ azure-mgmt-core
azure-mgmt-nspkg
];