Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / tableaudocumentapi / default.nix
blob5260a678e8c7a3d26df376fd02ab55e1a32c408e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "tableaudocumentapi";
8   version = "0.6";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "fc6d44b62cf6ea29916c073686e2f9f35c9902eccd57b8493f8d44a59a2f60d9";
13   };
15   # tests not inclued with release
16   doCheck = false;
18   meta = with lib; {
19     description = "A Python module for working with Tableau files";
20     homepage = "https://github.com/tableau/document-api-python";
21     license = licenses.mit;
22     maintainers = [ maintainers.costrouc ];
23   };