3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #187269 from onny/tableaudocumentapi

This commit is contained in:
Sandro 2022-08-19 11:53:05 +02:00 committed by GitHub
commit 73e390745f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,8 @@
{ lib
, buildPythonPackage
, fetchPypi
, lxml
, pytestCheckHook
}:
buildPythonPackage rec {
@ -12,13 +14,19 @@ buildPythonPackage rec {
sha256 = "sha256-ahR+o4UgFLm/9aFsEqmlwXkcgTjqI0wU2Tl9EjVjLZs=";
};
# tests not inclued with release
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 = [ maintainers.costrouc ];
maintainers = with maintainers; [ costrouc ];
};
}