summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/tableaudocumentapi
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-23 23:04:16 +0100
committerGitHub <noreply@github.com>2022-12-23 23:04:16 +0100
commit94bc8fdbf140de2df0b3ba5c8bd4dd4c3ff53a3f (patch)
tree47cb724ea2c89da5d3850c07e1273a8df5937081 /pkgs/development/python-modules/tableaudocumentapi
parent59f173771318af3b3418f40852ba85b5cbd8d18c (diff)
python310Packages.tableaudocumentapi: add changelog to meta
Diffstat (limited to 'pkgs/development/python-modules/tableaudocumentapi')
-rw-r--r--pkgs/development/python-modules/tableaudocumentapi/default.nix21
1 files changed, 16 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/tableaudocumentapi/default.nix b/pkgs/development/python-modules/tableaudocumentapi/default.nix
index 966b665d51ed..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.11";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-g6V1UBf+P21FcZkR3PHoUmdmrQwEvjdd1VKhvNmvOys=";
+ 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 ];
};