shocco: use python3

+2 -2
+2 -2
pkgs/tools/text/shocco/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, perlPackages, pythonPackages }: 1 + { lib, stdenv, fetchFromGitHub, perlPackages, python3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "shocco"; ··· 16 16 substituteInPlace configure --replace PATH= NIRVANA= 17 17 ''; 18 18 19 - buildInputs = [ perlPackages.TextMarkdown pythonPackages.pygments ]; 19 + buildInputs = [ perlPackages.TextMarkdown python3.pkgs.pygments ]; 20 20 21 21 meta = with lib; { 22 22 description = "A quick-and-dirty, literate-programming-style documentation generator for / in POSIX shell";