Unverified Commit 213e46d9 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python310Packages.azure-mgmt-resource: 21.2.0 -> 21.2.1
parents 0c44cc00 fed3280a
Loading
Loading
Loading
Loading
+17 −10
Original line number Diff line number Diff line
{ 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;