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

python310Packages.tableauserverclient: update meta

parent 2c038718
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ buildPythonPackage rec {

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-jSblDVkuuBBZ7GmPKUYji8wtRoPS7g8r6Ye9EpnjvKA=";
    hash = "sha256-jSblDVkuuBBZ7GmPKUYji8wtRoPS7g8r6Ye9EpnjvKA=";
  };

  propagatedBuildInputs = [ defusedxml requests packaging ];
@@ -26,10 +26,11 @@ buildPythonPackage rec {

  doCheck = false; # it attempts to create some file artifacts and fails

  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; [ ];
  };
}