Merge pull request #171755 from r-ryantm/auto-update/python3.10-spglib

python310Packages.spglib: 1.16.3 -> 1.16.5
main
Mario Rodas 2 years ago committed by GitHub
commit 534a3f3807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      pkgs/development/python-modules/spglib/default.nix

@ -1,23 +1,31 @@
{ lib, buildPythonPackage, fetchPypi, numpy, nose, pyyaml }:
{ lib, buildPythonPackage, fetchPypi, numpy, pytest, pyyaml }:
buildPythonPackage rec {
pname = "spglib";
version = "1.16.3";
version = "1.16.5";
src = fetchPypi {
inherit pname version;
sha256 = "ff1420967d64c2d4f0d747886116a6836d9b473454cdd73d560dbfe973a8a038";
sha256 = "sha256-Lqzv1TzGRLqakMRoH9bJNLa92BjBE9fzGZBOB41dq5M=";
};
propagatedBuildInputs = [ numpy ];
checkInputs = [ nose pyyaml ];
checkInputs = [ pytest pyyaml ];
# pytestCheckHook doesn't work
# ImportError: cannot import name '_spglib' from partially initialized module 'spglib'
checkPhase = ''
pytest
'';
pythonImportsCheck = [ "spglib" ];
meta = with lib; {
description = "Python bindings for C library for finding and handling crystal symmetries";
homepage = "https://atztogo.github.io/spglib";
homepage = "https://spglib.github.io/spglib/";
changelog = "https://github.com/spglib/spglib/raw/v${version}/ChangeLog";
license = licenses.bsd3;
maintainers = with maintainers; [ psyanticy ];
};
}

Loading…
Cancel
Save