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