depot/third_party/nixpkgs/pkgs/development/python-modules/tableauserverclient/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

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