nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 24 lines 542 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "tableaudocumentapi"; 8 version = "0.9"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0c7d01f01758dd6e50ff2fc915c6087c0da17298635e6635581aaf25c934d6ce"; 13 }; 14 15 # tests not inclued with release 16 doCheck = false; 17 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 }; 24}