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