blob: 871223878142c086682527ae945998e80e86433f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
lib,
buildPythonPackage,
fetchPypi,
lxml,
pytestCheckHook,
fetchpatch,
setuptools,
}:
buildPythonPackage rec {
pname = "tableaudocumentapi";
version = "0.11";
pyproject = true;
build-system = [ setuptools ];
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 = [ ];
};
}
|