libcint: 3.1.1 -> 4.0.2

Add changelog
This commit is contained in:
Drew Risinger 2020-10-07 09:02:17 -04:00
parent 1426cabb58
commit 6e34b3e6fe

View File

@ -4,18 +4,18 @@
, cmake , cmake
, blas , blas
# Check Inputs # Check Inputs
, python2 , python
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libcint"; pname = "libcint";
version = "3.1.1"; version = "4.0.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sunqm"; owner = "sunqm";
repo = "libcint"; repo = "libcint";
rev = "v${version}"; rev = "v${version}";
sha256 = "0z1gavi7aacx68fmyzy90vzv5kff844lnxc6habs6y377dr3rwwy"; sha256 = "0j8fkkp3vb1936qy80sc08c327b47qxh0x2aadd1225jjq6xqxmn";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
@ -27,8 +27,7 @@ stdenv.mkDerivation rec {
]; ];
doCheck = true; doCheck = true;
# Test syntax (like print statements) is written in python2. Fixed when #33 merged: https://github.com/sunqm/libcint/pull/33 checkInputs = [ python.pkgs.numpy ];
checkInputs = [ python2.pkgs.numpy ];
meta = with lib; { meta = with lib; {
description = "General GTO integrals for quantum chemistry"; description = "General GTO integrals for quantum chemistry";
@ -39,6 +38,7 @@ stdenv.mkDerivation rec {
''; '';
homepage = "http://wiki.sunqm.net/libcint"; homepage = "http://wiki.sunqm.net/libcint";
downloadPage = "https://github.com/sunqm/libcint"; downloadPage = "https://github.com/sunqm/libcint";
changelog = "https://github.com/sunqm/libcint/blob/master/ChangeLog";
license = licenses.bsd2; license = licenses.bsd2;
maintainers = with maintainers; [ drewrisinger ]; maintainers = with maintainers; [ drewrisinger ];
}; };