Martin Weinelt 99b95dc9e1
python3Packages.tableauserverclient: 0.36 -> 0.37
https://github.com/tableau/server-client-python/releases/tag/v0.37

This commit was automatically generated using update-python-libraries.
2025-04-03 23:13:09 +02:00

68 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
defusedxml,
fetchPypi,
packaging,
pytestCheckHook,
pythonOlder,
requests,
requests-mock,
setuptools,
typing-extensions,
versioneer,
}:
buildPythonPackage rec {
pname = "tableauserverclient";
version = "0.37";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-3jQtEuKABN0P2AmQ7NEKsabbokd73RIjFvbBpa52pfg=";
};
postPatch = ''
# Remove vendorized versioneer
rm versioneer.py
'';
pythonRelaxDeps = [
"defusedxml"
"urllib3"
];
build-system = [
setuptools
versioneer
];
dependencies = [
defusedxml
requests
packaging
typing-extensions
];
nativeCheckInputs = [
requests-mock
pytestCheckHook
];
# Tests attempt to create some file artifacts and fails
doCheck = false;
pythonImportsCheck = [ "tableauserverclient" ];
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 = [ ];
};
}