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

This commit is contained in:
Jonathan Ringer 2021-09-11 18:39:25 -07:00 committed by Jonathan Ringer
parent b1321c3264
commit 2a1f30c936

View file

@ -1,5 +1,6 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 { lib, buildPythonPackage, fetchPypi, isPy27
, azure-common , azure-common
, azure-mgmt-core
, msrest , msrest
, msrestazure , msrestazure
}: }:
@ -15,7 +16,12 @@ buildPythonPackage rec {
extension = "zip"; extension = "zip";
}; };
propagatedBuildInputs = [ azure-common msrest msrestazure ]; propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
msrestazure
];
# no tests included # no tests included
doCheck = false; doCheck = false;