2019-06-05 21:14:49 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, numpy, nose, pyyaml }:
|
2018-06-11 22:34:09 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "spglib";
|
2019-11-22 04:21:13 +01:00
|
|
|
version = "1.14.1.post0";
|
2018-06-11 22:34:09 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-22 04:21:13 +01:00
|
|
|
sha256 = "0kmllcch5p20ylxirqiqzls567jr2808rbld9i8f1kf0205al8qq";
|
2018-06-11 22:34:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
|
2019-03-02 14:37:01 +01:00
|
|
|
checkInputs = [ nose pyyaml ];
|
2018-06-11 22:34:09 +02: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 ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|