aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-11-29 15:10:39 -0800
committerFrederik Rietdijk <fridh@fridh.nl>2020-12-01 14:44:24 +0100
commit7d73203369df8ea7c1994e9d3b7adbc49556cb7a (patch)
treec65d90e357b73e12a5516245bedec70d5c988075
parent804de2a2ff0601e9f0d8c515e9349e2d66e65511 (diff)
python3Packages.pymatgen: fix deps
-rw-r--r--pkgs/development/python-modules/pymatgen/default.nix23
1 files changed, 21 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pymatgen/default.nix b/pkgs/development/python-modules/pymatgen/default.nix
index 01b51ce1d769..6a059eae5bf6 100644
--- a/pkgs/development/python-modules/pymatgen/default.nix
+++ b/pkgs/development/python-modules/pymatgen/default.nix
@@ -1,4 +1,23 @@
-{ stdenv, buildPythonPackage, fetchPypi, glibcLocales, numpy, pydispatcher, sympy, requests, monty, ruamel_yaml, six, scipy, tabulate, enum34, matplotlib, palettable, spglib, pandas, plotly, networkx }:
+{ stdenv, buildPythonPackage, fetchPypi
+, enum34
+, glibcLocales
+, matplotlib
+, monty
+, networkx
+, numpy
+, palettable
+, pandas
+, plotly
+, pydispatcher
+, requests
+, ruamel_yaml
+, scipy
+, six
+, spglib
+, sympy
+, tabulate
+, uncertainties
+}:
buildPythonPackage rec {
pname = "pymatgen";
@@ -11,7 +30,6 @@ buildPythonPackage rec {
nativeBuildInputs = [ glibcLocales ];
-
propagatedBuildInputs = [
enum34
matplotlib
@@ -29,6 +47,7 @@ buildPythonPackage rec {
spglib
sympy
tabulate
+ uncertainties
];
# No tests in pypi tarball.