summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-09-11 18:39:25 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-09-13 00:32:55 -0700
commit2a1f30c936041ed28340d5ee3afe56ba969711a3 (patch)
tree263b2afd8ba577b18592372acf4de9e62e1a0c93 /pkgs/development
parentb1321c326426ad5552e758e31b91107122bd2eec (diff)
python3Packages.azure-mgmt-sqlvirtualmachine: add missing dep when being overriden
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-sqlvirtualmachine/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-sqlvirtualmachine/default.nix b/pkgs/development/python-modules/azure-mgmt-sqlvirtualmachine/default.nix
index a34ebae2b812..76f0d7a2b39c 100644
--- a/pkgs/development/python-modules/azure-mgmt-sqlvirtualmachine/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-sqlvirtualmachine/default.nix
@@ -1,5 +1,6 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, azure-common
+, azure-mgmt-core
, msrest
, msrestazure
}:
@@ -15,7 +16,12 @@ buildPythonPackage rec {
extension = "zip";
};
- propagatedBuildInputs = [ azure-common msrest msrestazure ];
+ propagatedBuildInputs = [
+ azure-common
+ azure-mgmt-core
+ msrest
+ msrestazure
+ ];
# no tests included
doCheck = false;