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