1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "tableaudocumentapi";
8 version = "0.7";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "5b1d04817a0fba43d58e1ce23c64ad8dfe54dc029ba5ccae3908944555bb13e0";
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}