2019-06-05 20:14:49 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, numpy, nose, pyyaml }:
|
2018-06-11 21:34:09 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "spglib";
|
2020-05-24 07:22:42 +01:00
|
|
|
version = "1.15.1";
|
2018-06-11 21:34:09 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-24 07:22:42 +01:00
|
|
|
sha256 = "0c1nbpd5wy361xga8lw36xwc9yyz7rylsjr0z7aw7bn3s35bnkbx";
|
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
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|