Merge pull request #149400 from Infinisil/blockhash-python3

blockhash: 0.3.1 -> 0.3.2
This commit is contained in:
Silvan Mosberger 2021-12-09 19:36:46 +01:00 committed by GitHub
commit cb66992585
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,17 @@
{ lib, stdenv, fetchFromGitHub, python2, pkg-config, imagemagick, wafHook }:
{ lib, stdenv, fetchFromGitHub, python3, pkg-config, imagemagick, wafHook }:
stdenv.mkDerivation rec {
pname = "blockhash";
version = "0.3.1";
version = "0.3.2";
src = fetchFromGitHub {
owner = "commonsmachinery";
repo = "blockhash";
rev = "v${version}";
sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p";
sha256 = "0x3lvhnkb4c3pyq6p81qnnqimz35wpippiac506dgjx3b1848v35";
};
nativeBuildInputs = [ python2 pkg-config wafHook ];
nativeBuildInputs = [ python3 pkg-config wafHook ];
buildInputs = [ imagemagick ];
strictDeps = true;