python3Packages.azure-mgmt-sqlvirtualmachine: add missing dep when being overriden
This commit is contained in:
parent
b1321c3264
commit
2a1f30c936
1 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue