Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 689 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, numpy, future, spglib, glibcLocales }: 2 3buildPythonPackage rec { 4 pname = "seekpath"; 5 version = "1.8.4"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "b61dadba82acc0838402981b7944155adc092b114ca81f53f61b1d498a512e3a"; 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