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