3
0
Fork 0
forked from mirrors/nixpkgs

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

python310Packages.tableauserverclient: 0.26 -> 0.28
This commit is contained in:
Fabian Affolter 2023-11-12 15:20:02 +01:00 committed by GitHub
commit 2d221764a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,35 +1,49 @@
{ 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; [ ];
};
}