biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / pandoc-eqnos / default.nix
blob5ee4e9587d61aa73c1dbbe8bb60dfa0dbc8fc98a
1 { buildPythonApplication
2 , fetchFromGitHub
3 , lib
4 , pandoc-xnos
5 , setuptools
6 }:
8 buildPythonApplication rec {
9   pname = "pandoc-eqnos";
10   version = "2.5.0";
11   format = "pyproject";
13   src = fetchFromGitHub {
14     owner = "tomduck";
15     repo = pname;
16     rev = version;
17     sha256 = "sha256-7GQdfGHhtQs6LZK+ZyMmcPSkoFfBWmATTMejMiFcS7Y=";
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 equations and equation references";
31     homepage = "https://github.com/tomduck/pandoc-eqnos";
32     license = licenses.gpl3Only;
33     maintainers = with maintainers; [ ppenguin ];
34     mainProgram = "pandoc-eqnos";
35   };