5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
35 lines
780 B
Nix
35 lines
780 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, python
|
|
, fetchPypi
|
|
, defusedxml
|
|
, requests
|
|
, packaging
|
|
, requests-mock
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tableauserverclient";
|
|
version = "0.25";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-01TRYkXEWagFrSB7zvP6Bj4YvIFoaVkgrIm/gSWkILY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ defusedxml requests packaging ];
|
|
|
|
checkInputs = [ requests-mock ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
doCheck = false; # it attempts to create some file artifacts and fails
|
|
|
|
meta = {
|
|
description = "A Python module for working with the Tableau Server REST API.";
|
|
homepage = "https://pypi.org/project/tableauserverclient/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|