depot/third_party/nixpkgs/pkgs/development/python-modules/tableauserverclient/default.nix

36 lines
780 B
Nix
Raw Normal View History

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