1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "tableaudocumentapi";
8 version = "0.6";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "fc6d44b62cf6ea29916c073686e2f9f35c9902eccd57b8493f8d44a59a2f60d9";
13 };
14
15 # tests not inclued with release
16 doCheck = false;
17
18 meta = with lib; {
19 description = "A Python module for working with Tableau files";
20 homepage = https://github.com/tableau/document-api-python;
21 license = licenses.mit;
22 maintainers = [ maintainers.costrouc ];
23 };
24}