summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/tableaudocumentapi/default.nix
blob: 06a445450e5c72843188c7f17e5d27ad38914a07 (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
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "tableaudocumentapi";
  version = "0.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0c7d01f01758dd6e50ff2fc915c6087c0da17298635e6635581aaf25c934d6ce";
  };

  # tests not inclued with release
  doCheck = false;

  meta = with lib; {
    description = "A Python module for working with Tableau files";
    homepage = "https://github.com/tableau/document-api-python";
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}