summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-11-28 08:45:48 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-29 00:11:24 -0800
commitb0fb179bfd5919e807e8074c745c076cf623a934 (patch)
tree28d77aed323bed6e0302c55fd83de16ce00c08e5 /pkgs
parent7528130640475899ffec40c36462b4a8567ee473 (diff)
python3Packages.azure-mgmt-authorization: 0.61.0 -> 1.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-authorization/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-authorization/default.nix b/pkgs/development/python-modules/azure-mgmt-authorization/default.nix
index 400d421ee098..a622c6a94c90 100644
--- a/pkgs/development/python-modules/azure-mgmt-authorization/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-authorization/default.nix
@@ -4,24 +4,26 @@
, msrest
, msrestazure
, azure-common
+, azure-mgmt-core
, azure-mgmt-nspkg
, isPy3k
}:
buildPythonPackage rec {
pname = "azure-mgmt-authorization";
- version = "0.61.0";
+ version = "1.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "f5cceea3add04e9445ea88492f15eecf6c126f0406d967c95f6e48b79be8db75";
+ sha256 = "9a9fc16866b46387853381ab4fa0f84c1765e0afea5b0124709ea9fae10ee752";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
+ azure-mgmt-core
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
];