mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 16:36:38 +01:00
104 lines
2 KiB
Nix
104 lines
2 KiB
Nix
{
|
|
lib,
|
|
appdirs,
|
|
buildPythonPackage,
|
|
doit,
|
|
fetchFromGitHub,
|
|
ftfy,
|
|
mock,
|
|
pytest-order,
|
|
pytestCheckHook,
|
|
python,
|
|
requests,
|
|
setuptools,
|
|
setuptools-scm,
|
|
tableauserverclient,
|
|
types-appdirs,
|
|
types-mock,
|
|
types-requests,
|
|
types-setuptools,
|
|
urllib3,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tabcmd";
|
|
version = "2.0.18";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tableau";
|
|
repo = "tabcmd";
|
|
tag = "v${version}";
|
|
hash = "sha256-Eb9ZboYdco6opKW3Tz0+U9VREWdEyt2xuG62n9WIXPk=";
|
|
};
|
|
|
|
prePatch = ''
|
|
# Remove an unneeded dependency that can't be resolved
|
|
# https://github.com/tableau/tabcmd/pull/282
|
|
sed -i "/'argparse',/d" pyproject.toml
|
|
# Uses setuptools-scm instead
|
|
sed -i "/'pyinstaller_versionfile',/d" pyproject.toml
|
|
'';
|
|
|
|
pythonRelaxDeps = [
|
|
"tableauserverclient"
|
|
"urllib3"
|
|
];
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
pythonRemoveDeps = [
|
|
"pyinstaller_versionfile"
|
|
];
|
|
|
|
dependencies = [
|
|
appdirs
|
|
doit
|
|
ftfy
|
|
requests
|
|
setuptools-scm
|
|
tableauserverclient
|
|
types-appdirs
|
|
types-mock
|
|
types-requests
|
|
types-setuptools
|
|
urllib3
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pytest-order
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Create a "tabcmd" executable
|
|
postInstall = ''
|
|
# Create a directory for our wrapped binary.
|
|
mkdir -p $out/bin
|
|
|
|
cp -r build/lib/tabcmd/__main__.py $out/bin/
|
|
|
|
# Create a 'tabcmd' script with python3 shebang
|
|
echo "#!${python.interpreter}" > $out/bin/tabcmd
|
|
|
|
# Append __main__.py contents
|
|
cat $out/bin/__main__.py >> $out/bin/tabcmd
|
|
|
|
# Make it executable.
|
|
chmod +x $out/bin/tabcmd
|
|
'';
|
|
|
|
pythonImportsCheck = [ "tabcmd" ];
|
|
|
|
meta = {
|
|
description = "Command line client for working with Tableau Server";
|
|
homepage = "https://github.com/tableau/tabcmd";
|
|
changelog = "https://github.com/tableau/tabcmd/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "tabcmd";
|
|
};
|
|
}
|