summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/pythonSet.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/pythonSet.nix b/lib/pythonSet.nix
index 9dfb25ff..c69216cc 100644
--- a/lib/pythonSet.nix
+++ b/lib/pythonSet.nix
@@ -23,6 +23,20 @@
23 (final.resolveBuildSystem { setuptools = []; }) 23 (final.resolveBuildSystem { setuptools = []; })
24 ]; 24 ];
25 }); 25 });
26 halo = (prev.halo.override {
27 sourcePreference = "sdist";
28 }).overrideAttrs (oldAttrs: {
29 nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [
30 (final.resolveBuildSystem { setuptools = []; })
31 ];
32 });
33 unshare = (prev.unshare.override {
34 sourcePreference = "sdist";
35 }).overrideAttrs (oldAttrs: {
36 nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [
37 (final.resolveBuildSystem { setuptools = []; })
38 ];
39 });
26 }) 40 })
27 ] 41 ]
28 ) 42 )