2019-03-02 13:37:01 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, numpy, nose, pyyaml }:
|
2018-06-11 21:34:09 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "spglib";
|
2019-02-14 07:37:30 +00:00
|
|
|
version = "1.12.2.post0";
|
2018-06-11 21:34:09 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:30 +00:00
|
|
|
sha256 = "15b02b74c0f06179bc3650c43a710a5200abbba387c6eda3105bfd9236041443";
|
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";
|
|
|
|
homepage = https://atztogo.github.io/spglib;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|