spglib: 1.16.5 -> 2.0.1

Disable tests. The tests are now handled as seperate cmake subproject.
main
Markus Kowalewski 2 years ago
parent 859a6b3bcf
commit 9817dd375c
No known key found for this signature in database
GPG Key ID: 502A248E3FB4FF48
  1. 7
      pkgs/development/libraries/spglib/default.nix

@ -2,22 +2,19 @@
stdenv.mkDerivation rec {
pname = "spglib";
version = "1.16.5"; # N.B: if you change this, please update: pythonPackages.spglib
version = "2.0.1"; # N.B: if you change this, please update: pythonPackages.spglib
src = fetchFromGitHub {
owner = "spglib";
repo = "spglib";
rev = "v${version}";
sha256 = "sha256-BbqyL7WJ/jpOls1MmY7VNCN+OlF6u4uz/pZjMAqk87w=";
sha256 = "sha256-0M3GSnNvBNmE4ShW8NNkVrOBGEF9A0C5wd++xnyrcdI=";
};
nativeBuildInputs = [ cmake ];
buildInputs = lib.optionals stdenv.isDarwin [ openmp ];
checkTarget = "check";
doCheck = true;
meta = with lib; {
description = "C library for finding and handling crystal symmetries";
homepage = "https://spglib.github.io/spglib/";

Loading…
Cancel
Save