mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
libcint: use python3
This commit is contained in:
parent
7865ac1046
commit
993f3e4b4e
@ -4,7 +4,7 @@
|
|||||||
, cmake
|
, cmake
|
||||||
, blas
|
, blas
|
||||||
# Check Inputs
|
# Check Inputs
|
||||||
, python
|
, python3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -26,8 +26,10 @@ stdenv.mkDerivation rec {
|
|||||||
"-DCMAKE_INSTALL_PREFIX=" # ends up double-adding /nix/store/... prefix, this avoids issue
|
"-DCMAKE_INSTALL_PREFIX=" # ends up double-adding /nix/store/... prefix, this avoids issue
|
||||||
];
|
];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
checkInputs = [ python.pkgs.numpy ];
|
checkInputs = [ python3.pkgs.numpy ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "General GTO integrals for quantum chemistry";
|
description = "General GTO integrals for quantum chemistry";
|
||||||
|
Loading…
Reference in New Issue
Block a user