anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / misc / pandoc-tablenos / default.nix
blob6ee5ef65861e8059702ef083ac1b92cbe8c7920a
1 { buildPythonApplication
2 , fetchFromGitHub
3 , lib
4 , pandoc-xnos
5 , setuptools
6 }:
8 buildPythonApplication rec {
9   pname = "pandoc-tablenos";
10   version = "2.3.0";
11   format = "pyproject";
13   src = fetchFromGitHub {
14     owner = "tomduck";
15     repo = pname;
16     rev = version;
17     sha256 = "sha256-FwzsRziY3PoySo9hIFuLw6tOO9oQij6oQEyoY8HgnII=";
18   };
20   nativeBuildInputs = [
21     setuptools
22   ];
24   propagatedBuildInputs = [ pandoc-xnos ];
26   # Different pandoc executables are not available
27   doCheck = false;
29   meta = with lib; {
30     description = "Standalone pandoc filter from the pandoc-xnos suite for numbering tables and table references";
31     homepage = "https://github.com/tomduck/pandoc-tablenos";
32     license = licenses.gpl3Only;
33     maintainers = with maintainers; [ ppenguin ];
34     mainProgram = "pandoc-tablenos";
35   };