We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f8aae7 commit 2ed8f4eCopy full SHA for 2ed8f4e
flake.nix
@@ -53,5 +53,15 @@
53
self.packages.${system}.alot.doc;
54
default = self.packages.${system}.alot;
55
});
56
+ devShells = eachSystem (system: let
57
+ pkgs = nixpkgs.legacyPackages.${system};
58
+ arg = project.renderers.withPackages {
59
+ python = pkgs.python3.override {inherit packageOverrides;};
60
+ extras = builtins.attrNames project.dependencies.extras;
61
+ };
62
+ pythonEnv = pkgs.python3.withPackages arg;
63
+ in {
64
+ default = pkgs.mkShell {packages = [pythonEnv];};
65
+ });
66
};
67
}
0 commit comments