about summary refs log tree commit diff
path: root/pkgs/development/python-modules/potentials
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-11-26 21:36:41 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-11-26 21:36:41 +0100
commit85585e9d13c9e729ecb453b26bc2426aaab17aed (patch)
tree169cdf47c2105a6ebe6c894608302b0174125a21 /pkgs/development/python-modules/potentials
parent650120d8f961255142f798fc4036f7790f97fbbd (diff)
python3Packages.potentials: add missing dependencies
Diffstat (limited to 'pkgs/development/python-modules/potentials')
-rw-r--r--pkgs/development/python-modules/potentials/default.nix30
1 files changed, 17 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/potentials/default.nix b/pkgs/development/python-modules/potentials/default.nix
index 24db19b3c065e..ea7fc46542849 100644
--- a/pkgs/development/python-modules/potentials/default.nix
+++ b/pkgs/development/python-modules/potentials/default.nix
@@ -1,19 +1,21 @@
 { lib
+, bibtexparser
 , buildPythonPackage
-, fetchPypi
-, ipywidgets
 , cdcs
-, bibtexparser
+, datamodeldict
+, fetchPypi
 , habanero
+, ipywidgets
+, lxml
+, matplotlib
+, numpy
 , pandas
+, pytestCheckHook
+, pythonOlder
 , requests
-, numpy
-, matplotlib
+, scipy
 , unidecode
-, datamodeldict
 , xmltodict
-, pytestCheckHook
-, pythonOlder
 }:
 
 buildPythonPackage rec {
@@ -29,16 +31,18 @@ buildPythonPackage rec {
   };
 
   propagatedBuildInputs = [
-    ipywidgets
-    cdcs
     bibtexparser
+    cdcs
+    datamodeldict
     habanero
+    ipywidgets
+    lxml
+    matplotlib
+    numpy
     pandas
     requests
-    numpy
-    matplotlib
+    scipy
     unidecode
-    datamodeldict
     xmltodict
   ];