13da32182d
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
32 lines
706 B
Nix
32 lines
706 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, lxml
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tableaudocumentapi";
|
|
version = "0.10";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-ahR+o4UgFLm/9aFsEqmlwXkcgTjqI0wU2Tl9EjVjLZs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ lxml ];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "tableaudocumentapi" ];
|
|
|
|
# ModuleNotFoundError: No module named 'test.assets'
|
|
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 = with maintainers; [ costrouc ];
|
|
};
|
|
}
|