depot/third_party/nixpkgs/pkgs/development/python-modules/tableauserverclient/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

62 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
defusedxml,
fetchPypi,
packaging,
pytestCheckHook,
pythonOlder,
requests,
requests-mock,
setuptools,
versioneer,
}:
buildPythonPackage rec {
pname = "tableauserverclient";
version = "0.31";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-e00/+yVKg7dGGq3Os+oWu/F93j5e9dnwWZxKwm+soqM=";
};
postPatch = ''
# Remove vendorized versioneer
rm versioneer.py
'';
pythonRelaxDeps = [ "urllib3" ];
nativeBuildInputs = [
setuptools
versioneer
];
propagatedBuildInputs = [
defusedxml
requests
packaging
];
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 = with maintainers; [ ];
};
}