summary refs log tree commit diff
path: root/pkgs/development/python-modules/seekpath/default.nix
blob: de17e65d2bfb5e5b9f427d8df99cfa9bed316a03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildPythonPackage, fetchPypi, numpy, future, spglib, glibcLocales }:

buildPythonPackage rec {
  pname = "seekpath";
  version = "1.8.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0bdc0400c96952525b1165894807e4bec90aaedb11cfeb27a57414e6091eb026";
  };  

  LC_ALL = "en_US.utf-8";

  propagatedBuildInputs = [ numpy spglib future ];

  nativeBuildInputs = [ glibcLocales ];

  meta = with stdenv.lib; {
    description = "A module to obtain and visualize band paths in the Brillouin zone of crystal structures.";
    homepage = https://github.com/giovannipizzi/seekpath;
    license = licenses.mit;
    maintainers = with maintainers; [ psyanticy ];
  };
}