We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1c3a38 commit f1ff319Copy full SHA for f1ff319
docs/requirements.txt
@@ -1,4 +1,4 @@
1
Sphinx==4.0.2
2
sphinx-rtd-theme==0.5.2
3
myst-parser==0.15.1
4
-docutils<0.17
+docutils<0.19
flake.nix
@@ -170,7 +170,14 @@
170
pkgs = import nixpkgs {
171
inherit system;
172
overlays = [ self.overlay ];
173
- config = { allowBroken = true; };
+ config = {
174
+ allowBroken = true;
175
+ packageOverrides = pkgs': {
176
+ python39 = pkgs'.python39.override {
177
+ packageOverrides = self: super: { docutils = super.python3Packages.callPackage ./docutils.nix {}; };
178
+ };
179
180
181
};
182
183
# Pre-commit hooks to run stylish-haskell
0 commit comments