Merge pull request #76488 from jtojnar/more-python-cleanups

Another batch of Python 2 clean-ups
This commit is contained in:
Frederik Rietdijk
2020-01-06 12:00:36 +01:00
committed by GitHub
17 changed files with 57 additions and 39 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
{ lib, fetchurl, stdenv, ncurses,
IOKit, python }:
IOKit, python3 }:
stdenv.mkDerivation rec {
pname = "htop";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "0mrwpb3cpn3ai7ar33m31yklj64c3pp576vh1naqff6f21pq5mnr";
};
nativeBuildInputs = [ python ];
nativeBuildInputs = [ python3 ];
buildInputs =
[ ncurses ] ++
lib.optionals stdenv.isDarwin [ IOKit ];