2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, fetchpatch, numpy, nose, pyyaml }:
|
2018-06-11 21:34:09 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "spglib";
|
2021-02-20 09:09:17 +00:00
|
|
|
version = "1.16.1";
|
2018-06-11 21:34:09 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 09:09:17 +00:00
|
|
|
sha256 = "9fd2fefbd83993b135877a69c498d8ddcf20a9980562b65b800cfb4cdadad003";
|
2018-06-11 21:34:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
|
2019-03-02 13:37:01 +00:00
|
|
|
checkInputs = [ nose pyyaml ];
|
2018-06-11 21:34:09 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-06-11 21:34:09 +01:00
|
|
|
description = "Python bindings for C library for finding and handling crystal symmetries";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://atztogo.github.io/spglib";
|
2018-06-11 21:34:09 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|