blob: 56a3b27e7b9653233226ab1b1654ddb0b6abb8b6 (
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.7";
src = fetchPypi {
inherit pname version;
sha256 = "5b1d04817a0fba43d58e1ce23c64ad8dfe54dc029ba5ccae3908944555bb13e0";
};
# 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 ];
};
}
|