1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

apfel: build with python3 (#148796)

Upstream supports python3 since:
0a75939245
50c729f7f1
This commit is contained in:
Ryan Burns 2021-12-05 22:14:35 -08:00 committed by GitHub
parent dac5570863
commit 69263d42c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, gfortran, lhapdf, python2, zlib }:
{ lib, stdenv, fetchFromGitHub, gfortran, lhapdf, python3, zlib }:
stdenv.mkDerivation rec {
pname = "apfel";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-szEtSC/NouYlHSjVoX9Hoh7yQ0W82rVccYEF1L2tXoU=";
};
buildInputs = [ gfortran lhapdf python2 zlib ];
buildInputs = [ gfortran lhapdf python3 zlib ];
enableParallelBuilding = true;