summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-12-24 09:47:59 +0100
committerGitHub <noreply@github.com>2022-12-24 09:47:59 +0100
commit9d6eb38f3d2aab62e1429ab049b53534b8e53d9d (patch)
tree4313262a4c18aa1d9037d130bab4177d5e531061
parentadb5246cc12108b5e548a05dfe45b94e516f5ba7 (diff)
parent94bc8fdbf140de2df0b3ba5c8bd4dd4c3ff53a3f (diff)
Merge pull request #207471 from r-ryantm/auto-update/python310Packages.tableaudocumentapi
python310Packages.tableaudocumentapi: 0.10 -> 0.11
-rw-r--r--pkgs/development/python-modules/tableaudocumentapi/default.nix23
1 files changed, 17 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/tableaudocumentapi/default.nix b/pkgs/development/python-modules/tableaudocumentapi/default.nix
index ae6f374836d7..840407cfa1db 100644
--- a/pkgs/development/python-modules/tableaudocumentapi/default.nix
+++ b/pkgs/development/python-modules/tableaudocumentapi/default.nix
@@ -3,29 +3,40 @@
, fetchPypi
, lxml
, pytestCheckHook
+, pythonOlder
}:
buildPythonPackage rec {
pname = "tableaudocumentapi";
- version = "0.10";
+ version = "0.11";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-ahR+o4UgFLm/9aFsEqmlwXkcgTjqI0wU2Tl9EjVjLZs=";
+ hash = "sha256-g6V1UBf+P21FcZkR3PHoUmdmrQwEvjdd1VKhvNmvOys=";
};
- propagatedBuildInputs = [ lxml ];
+ propagatedBuildInputs = [
+ lxml
+ ];
- checkInputs = [ pytestCheckHook ];
+ checkInputs = [
+ pytestCheckHook
+ ];
- pythonImportsCheck = [ "tableaudocumentapi" ];
+ pythonImportsCheck = [
+ "tableaudocumentapi"
+ ];
# ModuleNotFoundError: No module named 'test.assets'
doCheck = false;
meta = with lib; {
- description = "A Python module for working with Tableau files";
+ description = "Python module for working with Tableau files";
homepage = "https://github.com/tableau/document-api-python";
+ changelog = "https://github.com/tableau/document-api-python/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ costrouc ];
};