We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 188ffc2 commit d6831e2Copy full SHA for d6831e2
1 file changed
flake.nix
@@ -299,6 +299,10 @@
299
};
300
301
pythonFun = import "${toString pkgs.path}/pkgs/development/interpreters/python/cpython/${infix}default.nix";
302
+ pythonSrc = pkgs.fetchurl {
303
+ inherit url;
304
+ sha256 = hash;
305
+ };
306
python =
307
(self.lib.applyOverrides overrides (
308
callPackage pythonFun (
@@ -319,13 +323,15 @@
319
323
)
320
324
)).overrideAttrs
321
325
(old: {
322
- src = pkgs.fetchurl {
- inherit url;
- sha256 = hash;
- };
326
+ src = pythonSrc;
327
meta = old.meta // {
328
knownVulnerabilities = [ ];
329
330
+ passthru = old.passthru // {
331
+ doc = old.passthru.doc.overrideAttrs {
332
333
334
335
});
336
in
337
python;
0 commit comments