From 2b4a802a51ad5bc57a5d262567e0b759161b1478 Mon Sep 17 00:00:00 2001 From: Andrey Golovizin Date: Fri, 7 Feb 2020 22:45:28 +0100 Subject: [PATCH] shell.nix: add pip from nixpkgs --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index c980708..3d210d7 100644 --- a/shell.nix +++ b/shell.nix @@ -11,7 +11,7 @@ in name = "strojnadzor-env"; buildInputs = [ pkgs.nodejs - python.interpreter + (python.interpreterWithPackages (ps: [ pkgs.python37Packages.pip ])) ]; shellHook = '' '';