python3Packages.azure-mgmt-sqlvirtualmachine: add missing dep when being overriden

main
Jonathan Ringer 3 years ago committed by Jonathan Ringer
parent b1321c3264
commit 2a1f30c936
  1. 8
      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;

Loading…
Cancel
Save