Unverified Commit 2d221764 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #266923 from r-ryantm/auto-update/python310Packages.tableauserverclient

python310Packages.tableauserverclient: 0.26 -> 0.28
parents 44cf4801 2eb5878b
Loading
Loading
Loading
Loading
+26 −12
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, python
, fetchPypi
, defusedxml
, requests
, packaging
, requests-mock
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "tableauserverclient";
  version = "0.26";
  version = "0.28";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-vn7A7n0Z4kTtrm8MEoUJiv94K3qA/4Kx8lElhDM/LlI=";
    hash = "sha256-jSblDVkuuBBZ7GmPKUYji8wtRoPS7g8r6Ye9EpnjvKA=";
  };

  propagatedBuildInputs = [ defusedxml requests packaging ];
  propagatedBuildInputs = [
    defusedxml
    requests
    packaging
  ];

  checkInputs = [ requests-mock ];
  nativeCheckInputs = [
    requests-mock
    pytestCheckHook
  ];

  nativeCheckInputs = [ pytestCheckHook ];
  # Tests attempt to create some file artifacts and fails
  doCheck = false;

  doCheck = false; # it attempts to create some file artifacts and fails
  pythonImportsCheck = [
    "tableauserverclient"
  ];

  meta = {
    description = "A Python module for working with the Tableau Server REST API.";
    homepage = "https://pypi.org/project/tableauserverclient/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  meta = with lib; {
    description = "Module for working with the Tableau Server REST API";
    homepage = "https://github.com/tableau/server-client-python";
    changelog = "https://github.com/tableau/server-client-python/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}