about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorAssassinkin <iuns@outlook.fr>2018-07-11 18:26:31 +0100
committerAssassinkin <iuns@outlook.fr>2018-08-01 10:58:23 +0100
commit791d50fd3fd27c8f5dc0e8c02811fcf199c7b2c9 (patch)
tree2dfd909c4205f903dddf1812d72c96a50ac8cd94 /pkgs/development/python-modules
parent1e1cf4f18cc8b1817c917dd46a6525072c1256e5 (diff)
downloadnixlib-791d50fd3fd27c8f5dc0e8c02811fcf199c7b2c9.tar
nixlib-791d50fd3fd27c8f5dc0e8c02811fcf199c7b2c9.tar.gz
nixlib-791d50fd3fd27c8f5dc0e8c02811fcf199c7b2c9.tar.bz2
nixlib-791d50fd3fd27c8f5dc0e8c02811fcf199c7b2c9.tar.lz
nixlib-791d50fd3fd27c8f5dc0e8c02811fcf199c7b2c9.tar.xz
nixlib-791d50fd3fd27c8f5dc0e8c02811fcf199c7b2c9.tar.zst
nixlib-791d50fd3fd27c8f5dc0e8c02811fcf199c7b2c9.zip
pythonPackages.pymatgen:init at 2018.6.27
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pymatgen/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pymatgen/default.nix b/pkgs/development/python-modules/pymatgen/default.nix
new file mode 100644
index 000000000000..874f7bfa3083
--- /dev/null
+++ b/pkgs/development/python-modules/pymatgen/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildPythonPackage, fetchPypi, glibcLocales, numpy, pydispatcher, sympy, requests, monty, ruamel_yaml, six, scipy, tabulate, enum34, matplotlib, palettable, spglib, pandas }:
+
+buildPythonPackage rec {
+  pname = "pymatgen";
+  version = "2018.6.27";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "8078af7fda4f9a07f1e389ffe08de3511213acdf9fb2ed9f9ffe89b9b12b8568";
+  };
+
+  nativeBuildInputs = [ glibcLocales ];
+  propagatedBuildInputs = [ numpy pydispatcher sympy requests monty ruamel_yaml six scipy tabulate enum34 matplotlib palettable spglib pandas ];
+  
+  # No tests in pypi tarball.
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "A robust materials analysis code that defines core object representations for structures and molecules";
+    homepage = http://pymatgen.org/;
+    license = licenses.mit;
+    maintainers = with maintainers; [ psyanticy ];
+  };
+}
+