ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
67 lines
1.2 KiB
Nix
67 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.33";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-7yj/Ey3mIR2GZ0gtNkrrtoKEmuA5LihZlM9qPhbROQw=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Remove vendorized versioneer
|
|
rm versioneer.py
|
|
'';
|
|
|
|
pythonRelaxDeps = [
|
|
"defusedxml"
|
|
"urllib3"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
versioneer
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
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 = [ ];
|
|
};
|
|
}
|