python3Packages.azure-mgmt-rdbms: 2.2.0 -> 8.0.0

This commit is contained in:
Jonathan Ringer 2021-01-11 16:19:23 -08:00 committed by Jonathan Ringer
parent f0ec201d42
commit b476eb9aae

View File

@ -4,30 +4,33 @@
, msrest
, msrestazure
, azure-common
, azure-mgmt-core
, azure-mgmt-nspkg
, isPy3k
}:
buildPythonPackage rec {
pname = "azure-mgmt-rdbms";
version = "2.2.0";
version = "8.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1iz1pf28ajrzbq8nab1jbjbgfbv0g6ni036xayy6xylvga4l8czr";
sha256 = "8b018543048fc4fddb4155d9f22246ad0c4be2fb582a29dbb21ec4022724a119";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
msrestazure
azure-common
] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
pythonImportsCheck = [ "azure.mgmt.rdbms" ];
meta = with lib; {
description = "This is the Microsoft Azure RDBMS Management Client Library";