pythonPackages.seekpath: init at 1.8.1

This commit is contained in:
Assassinkin 2018-06-21 18:18:17 +01:00
parent bf1c28e978
commit e2589f7a72
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -458,6 +458,8 @@ in {
salmon-mail = callPackage ../development/python-modules/salmon-mail { };
seekpath = callPackage ../development/python-modules/seekpath { };
serversyncstorage = callPackage ../development/python-modules/serversyncstorage {};
simpleeval = callPackage ../development/python-modules/simpleeval { };