nixpkgs/pkgs/development/python-modules/spglib/default.nix
2019-02-17 14:40:42 +01:00

27 lines
653 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, numpy, python }:
buildPythonPackage rec {
pname = "spglib";
version = "1.12.2.post0";
src = fetchPypi {
inherit pname version;
sha256 = "15b02b74c0f06179bc3650c43a710a5200abbba387c6eda3105bfd9236041443";
};
propagatedBuildInputs = [ numpy ];
checkPhase = ''
cd test
${python.interpreter} -m unittest discover -bv
'';
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 ];
};
}