libcint: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-26 10:37:22 +01:00
parent 7865ac1046
commit 993f3e4b4e

View File

@ -4,7 +4,7 @@
, cmake
, blas
# Check Inputs
, python
, python3
}:
stdenv.mkDerivation rec {
@ -26,8 +26,10 @@ stdenv.mkDerivation rec {
"-DCMAKE_INSTALL_PREFIX=" # ends up double-adding /nix/store/... prefix, this avoids issue
];
strictDeps = true;
doCheck = true;
checkInputs = [ python.pkgs.numpy ];
checkInputs = [ python3.pkgs.numpy ];
meta = with lib; {
description = "General GTO integrals for quantum chemistry";