Skip to content

Commit 5fd1e6b

Browse files
committed
Use nbconvert from pkgsMaster so we don't need patch anymore
1 parent c3541b7 commit 5fd1e6b

File tree

3 files changed

+2
-49
lines changed

3 files changed

+2
-49
lines changed

modules/exporters/fix-asciidoc.patch

-43
This file was deleted.

modules/exporters/module.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ with lib;
2828
};
2929

3030
config = mkIf config.exporters.nbconvert.enable {
31-
builtExporters.nbconvert = config.pkgs.callPackage ./nbconvert.nix {
31+
builtExporters.nbconvert = config.pkgsMaster.callPackage ./nbconvert.nix {
3232
texliveScheme = config.pkgs.texlive.combined.${config.exporters.nbconvert.texliveScheme};
3333
};
3434
};

modules/exporters/nbconvert.nix

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@
66
}:
77

88
let
9-
nbconvert = python3.pkgs.nbconvert.overrideAttrs (oldAttrs: {
10-
patches = oldAttrs.patches ++ [
11-
./fix-asciidoc.patch
12-
];
13-
});
9+
nbconvert = python3.pkgs.nbconvert;
1410

1511
common = callPackage ../kernels/common.nix {};
1612

0 commit comments

Comments
 (0)