aboutsummaryrefslogtreecommitdiff
path: root/devShells/python.nix
diff options
context:
space:
mode:
Diffstat (limited to 'devShells/python.nix')
-rw-r--r--devShells/python.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/devShells/python.nix b/devShells/python.nix
index 492644e..1bd1dad 100644
--- a/devShells/python.nix
+++ b/devShells/python.nix
@@ -1,7 +1,4 @@
-{
- pkgs,
- default,
-}:
+pkgs:
pkgs.mkShell {
packages = with pkgs; [
(python3.withPackages (pypkgs:
@@ -50,6 +47,5 @@ pkgs.mkShell {
gtk3
gtk4
];
- inputsFrom = with pkgs; [default];
meta.platforms = pkgs.lib.platforms.linux;
}