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
commit08d1c80d94e97d2026de3f69c5ffadee66107a15 (patch)
tree618477fbab8d78a1b3d09ed66cf4a0dbe2f9cab6 /pkgs
parente92d93ec2c5938e86307f81b3f6fbe34e9fdf0a9 (diff)
python3Packages.azure-mgmt-containerservice: 10.0.0 -> 14.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-containerservice/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
index 41089fdeaedb..8e93026b6021 100644
--- a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
@@ -4,24 +4,26 @@
, msrest
, msrestazure
, azure-common
+, azure-mgmt-core
, azure-mgmt-nspkg
, isPy3k
}:
buildPythonPackage rec {
pname = "azure-mgmt-containerservice";
- version = "10.0.0";
+ version = "14.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "9b44b2d0b281fc1999324a715fb5cf4f47d392a35bc0a01f24bb8dbc4c123acd";
+ sha256 = "fbb13448fb52a4090ee91940ae8676403dbe8ae81044b7a5cd3c9e58b47d66de";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
+ azure-mgmt-core
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
];