summary refs log tree commit diff
path: root/pkgs/development/libraries/libcint
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2020-10-07 09:02:17 -0400
committerDrew Risinger <drewrisinger@users.noreply.github.com>2020-10-07 09:04:39 -0400
commit6e34b3e6fee8e176a340763a0084a1b3354dcee5 (patch)
tree832ab2d6fe64ccf9e57267dded9a240d3b6b637d /pkgs/development/libraries/libcint
parent1426cabb5872cbe2862f3c79522f4117559bac0d (diff)
downloadnixpkgs-6e34b3e6fee8e176a340763a0084a1b3354dcee5.tar
nixpkgs-6e34b3e6fee8e176a340763a0084a1b3354dcee5.tar.gz
nixpkgs-6e34b3e6fee8e176a340763a0084a1b3354dcee5.tar.bz2
nixpkgs-6e34b3e6fee8e176a340763a0084a1b3354dcee5.tar.lz
nixpkgs-6e34b3e6fee8e176a340763a0084a1b3354dcee5.tar.xz
nixpkgs-6e34b3e6fee8e176a340763a0084a1b3354dcee5.tar.zst
nixpkgs-6e34b3e6fee8e176a340763a0084a1b3354dcee5.zip
libcint: 3.1.1 -> 4.0.2
Add changelog
Diffstat (limited to 'pkgs/development/libraries/libcint')
-rw-r--r--pkgs/development/libraries/libcint/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libcint/default.nix b/pkgs/development/libraries/libcint/default.nix
index 55ba8d7b301..b7dd32a056c 100644
--- a/pkgs/development/libraries/libcint/default.nix
+++ b/pkgs/development/libraries/libcint/default.nix
@@ -4,18 +4,18 @@
 , cmake
 , blas
   # Check Inputs
-, python2
+, python
 }:
 
 stdenv.mkDerivation rec {
   pname = "libcint";
-  version = "3.1.1";
+  version = "4.0.2";
 
   src = fetchFromGitHub {
     owner = "sunqm";
     repo = "libcint";
     rev = "v${version}";
-    sha256 = "0z1gavi7aacx68fmyzy90vzv5kff844lnxc6habs6y377dr3rwwy";
+    sha256 = "0j8fkkp3vb1936qy80sc08c327b47qxh0x2aadd1225jjq6xqxmn";
   };
 
   nativeBuildInputs = [ cmake ];
@@ -27,8 +27,7 @@ stdenv.mkDerivation rec {
   ];
 
   doCheck = true;
-  # Test syntax (like print statements) is written in python2. Fixed when #33 merged: https://github.com/sunqm/libcint/pull/33
-  checkInputs = [ python2.pkgs.numpy ];
+  checkInputs = [ python.pkgs.numpy ];
 
   meta = with lib; {
     description = "General GTO integrals for quantum chemistry";
@@ -39,6 +38,7 @@ stdenv.mkDerivation rec {
     '';
     homepage = "http://wiki.sunqm.net/libcint";
     downloadPage = "https://github.com/sunqm/libcint";
+    changelog = "https://github.com/sunqm/libcint/blob/master/ChangeLog";
     license = licenses.bsd2;
     maintainers = with maintainers; [ drewrisinger ];
   };