node-env.nix: remove references to python2 (#391707)

authored by Gaétan Lepage and committed by GitHub 12ab22da 25f1461f

+3 -8
-1
pkgs/development/compilers/elm/packages/node/node-composition.nix
··· 13 13 inherit (pkgs) 14 14 stdenv 15 15 lib 16 - python2 17 16 runCommand 18 17 writeTextFile 19 18 writeShellScript
-1
pkgs/development/node-packages/composition.nix
··· 13 13 inherit (pkgs) 14 14 stdenv 15 15 lib 16 - python2 17 16 runCommand 18 17 writeTextFile 19 18 writeShellScript
+2 -2
pkgs/development/node-packages/node-env.nix
··· 1 1 # This file originates from node2nix 2 2 3 - {lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}: 3 + {lib, stdenv, nodejs, pkgs, libtool, runCommand, writeTextFile, writeShellScript}: 4 4 5 5 let 6 - python = if nodejs ? python then nodejs.python else python2; 6 + inherit (nodejs) python; 7 7 8 8 # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise 9 9 tarWrapper = runCommand "tarWrapper" {} ''
+1 -1
pkgs/misc/base16-builder/node-packages.nix
··· 6 6 7 7 let 8 8 nodeEnv = import ../../development/node-packages/node-env.nix { 9 - inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript; 9 + inherit (pkgs) stdenv lib runCommand writeTextFile writeShellScript; 10 10 inherit pkgs nodejs; 11 11 libtool = if pkgs.stdenv.hostPlatform.isDarwin then pkgs.cctools or pkgs.darwin.cctools else null; 12 12 };
-1
pkgs/servers/mx-puppet-discord/node-composition.nix
··· 13 13 inherit (pkgs) 14 14 stdenv 15 15 lib 16 - python2 17 16 runCommand 18 17 writeTextFile 19 18 writeShellScript
-1
pkgs/servers/web-apps/ethercalc/node-packages.nix
··· 13 13 inherit (pkgs) 14 14 stdenv 15 15 lib 16 - python2 17 16 runCommand 18 17 writeTextFile 19 18 writeShellScript
-1
pkgs/tools/security/onlykey/onlykey.nix
··· 13 13 inherit (pkgs) 14 14 stdenv 15 15 lib 16 - python2 17 16 runCommand 18 17 writeTextFile 19 18 writeShellScript