summary refs log tree commit diff
path: root/pkgs/development/python-modules/tableaudocumentapi/default.nix
blob: 5260a678e8c7a3d26df376fd02ab55e1a32c408e (plain) (blame)
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.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "fc6d44b62cf6ea29916c073686e2f9f35c9902eccd57b8493f8d44a59a2f60d9";
  };

  # 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 ];
  };
}