Unverified Commit 7603c13b authored by Christoph Jabs's avatar Christoph Jabs
Browse files

python3Packages.pylatex: use texlive.withPackages instead of texlive.combine

parent 271c68c6
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
  pytestCheckHook,
  matplotlib,
  quantities,
  texlive,
  texliveSmall,
}:

buildPythonPackage rec {
@@ -35,7 +35,12 @@ buildPythonPackage rec {
    pytestCheckHook
    matplotlib
    quantities
    (texlive.combine { inherit (texlive) scheme-small lastpage collection-fontsrecommended; })
    (texliveSmall.withPackages (
      ps: with ps; [
        lastpage
        collection-fontsrecommended
      ]
    ))
  ];

  meta = {