mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.seekpath: init at 1.8.1
This commit is contained in:
parent
bf1c28e978
commit
e2589f7a72
25
pkgs/development/python-modules/seekpath/default.nix
Normal file
25
pkgs/development/python-modules/seekpath/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -458,6 +458,8 @@ in {
|
|||||||
|
|
||||||
salmon-mail = callPackage ../development/python-modules/salmon-mail { };
|
salmon-mail = callPackage ../development/python-modules/salmon-mail { };
|
||||||
|
|
||||||
|
seekpath = callPackage ../development/python-modules/seekpath { };
|
||||||
|
|
||||||
serversyncstorage = callPackage ../development/python-modules/serversyncstorage {};
|
serversyncstorage = callPackage ../development/python-modules/serversyncstorage {};
|
||||||
|
|
||||||
simpleeval = callPackage ../development/python-modules/simpleeval { };
|
simpleeval = callPackage ../development/python-modules/simpleeval { };
|
||||||
|
Loading…
Reference in New Issue
Block a user