1{ lib, buildPythonPackage, fetchPypi, numpy, nose, pyyaml }:
2
3buildPythonPackage rec {
4 pname = "spglib";
5 version = "1.16.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "9fd2fefbd83993b135877a69c498d8ddcf20a9980562b65b800cfb4cdadad003";
10 };
11
12 propagatedBuildInputs = [ numpy ];
13
14 checkInputs = [ nose pyyaml ];
15
16 meta = with lib; {
17 description = "Python bindings for C library for finding and handling crystal symmetries";
18 homepage = "https://atztogo.github.io/spglib";
19 license = licenses.bsd3;
20 maintainers = with maintainers; [ psyanticy ];
21 };
22}
23