1{ stdenv, buildPythonPackage, fetchPypi, numpy, future, spglib, glibcLocales }: 2 3buildPythonPackage rec { 4 pname = "seekpath"; 5 version = "1.8.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8fb22231ed6fc6aa12e2f2cc6c8ca67b82648e16c1c85ddac2e2237ac4553d83"; 10 }; 11 12 LC_ALL = "en_US.utf-8"; 13 14 propagatedBuildInputs = [ numpy spglib future ]; 15 16 nativeBuildInputs = [ glibcLocales ]; 17 18 meta = with stdenv.lib; { 19 description = "A module to obtain and visualize band paths in the Brillouin zone of crystal structures."; 20 homepage = https://github.com/giovannipizzi/seekpath; 21 license = licenses.mit; 22 maintainers = with maintainers; [ psyanticy ]; 23 }; 24} 25