My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/tableaudocumentapi/default.nix

24 lines
542 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "tableaudocumentapi";
version = "0.9";
src = fetchPypi {
inherit pname version;
sha256 = "0c7d01f01758dd6e50ff2fc915c6087c0da17298635e6635581aaf25c934d6ce";
};
# tests not inclued with release
doCheck = false;
meta = with lib; {
description = "A Python module for working with Tableau files";
homepage = "https://github.com/tableau/document-api-python";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}