blockhash: use python2

+4 -2
+4 -2
pkgs/tools/graphics/blockhash/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python, pkg-config, imagemagick, wafHook }: 2 3 stdenv.mkDerivation rec { 4 pname = "blockhash"; ··· 11 sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p"; 12 }; 13 14 - nativeBuildInputs = [ python pkg-config wafHook ]; 15 buildInputs = [ imagemagick ]; 16 17 meta = with lib; { 18 homepage = "http://blockhash.io/";
··· 1 + { lib, stdenv, fetchFromGitHub, python2, pkg-config, imagemagick, wafHook }: 2 3 stdenv.mkDerivation rec { 4 pname = "blockhash"; ··· 11 sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p"; 12 }; 13 14 + nativeBuildInputs = [ python2 pkg-config wafHook ]; 15 buildInputs = [ imagemagick ]; 16 + 17 + strictDeps = true; 18 19 meta = with lib; { 20 homepage = "http://blockhash.io/";