Files
nixpkgs/pkgs/development/python-modules/tableaudocumentapi/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

52 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
lxml,
pytestCheckHook,
pythonOlder,
fetchpatch,
setuptools,
}:
buildPythonPackage rec {
pname = "tableaudocumentapi";
version = "0.11";
pyproject = true;
build-system = [ setuptools ];
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-g6V1UBf+P21FcZkR3PHoUmdmrQwEvjdd1VKhvNmvOys=";
};
patches = [
# distutils has been removed since python 3.12
# see https://github.com/tableau/document-api-python/pull/255
(fetchpatch {
name = "no-distutils.patch";
url = "https://github.com/tableau/document-api-python/pull/255/commits/59280bbe073060d1249e6404e11303ed6faa84f6.patch";
hash = "sha256-mjIF9iP1BQXvqkS0jYNTm8otkhSKLj2b2iHSMZ2K0iI=";
})
];
dependencies = [ lxml ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "tableaudocumentapi" ];
# ModuleNotFoundError: No module named 'test.assets'
doCheck = false;
meta = {
description = "Python module for working with Tableau files";
homepage = "https://github.com/tableau/document-api-python";
changelog = "https://github.com/tableau/document-api-python/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}