Merge pull request #197019 from r-ryantm/auto-update/python310Packages.azure-mgmt-resource

python310Packages.azure-mgmt-resource: 21.2.0 -> 21.2.1
This commit is contained in:
Fabian Affolter
2022-10-21 10:12:32 +02:00
committed by GitHub
@@ -1,36 +1,43 @@
{ pkgs
{ lib
, buildPythonPackage
, fetchPypi
, azure-mgmt-core
, azure-mgmt-common
, isPy3k
, msrest
, pythonOlder
}:
buildPythonPackage rec {
version = "21.2.0";
pname = "azure-mgmt-resource";
disabled = !isPy3k;
version = "21.2.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "sha256-v4pd5sTate/H8NGND1cWXe5SMepS0j0Q2C5Ee4wqGlQ=";
hash = "sha256-vSBg1WOT/+Ykao8spn51Tt0D7Ae5dWMLMK4DqIYFl6c=";
};
propagatedBuildInputs = [
azure-mgmt-common
azure-mgmt-core
msrest
];
# has no tests
# Module has no tests
doCheck = false;
pythonNamespaces = [ "azure.mgmt" ];
pythonNamespaces = [
"azure.mgmt"
];
pythonImportsCheck = [ "azure.mgmt.resource" ];
pythonImportsCheck = [
"azure.mgmt.resource"
];
meta = with pkgs.lib; {
meta = with lib; {
description = "Microsoft Azure SDK for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;