nixpkgs/pkgs/development/python-modules/spglib/default.nix

24 lines
613 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, numpy, nose, pyyaml }:
buildPythonPackage rec {
pname = "spglib";
2020-08-16 20:31:16 +03:00
version = "1.16.0";
src = fetchPypi {
inherit pname version;
2020-08-16 20:31:16 +03:00
sha256 = "94d056e48e7e6fe2e6fe4161471e774ac03221a6225fd83d551d3184220c1edf";
};
propagatedBuildInputs = [ numpy ];
2019-03-02 16:37:01 +03:00
checkInputs = [ nose pyyaml ];
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 ];
};
}