mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 03:25:02 +00:00
python3Packages.potentials: add missing dependencies
This commit is contained in:
parent
650120d8f9
commit
85585e9d13
|
@ -1,19 +1,21 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, ipywidgets
|
||||
, cdcs
|
||||
, bibtexparser
|
||||
, habanero
|
||||
, pandas
|
||||
, requests
|
||||
, numpy
|
||||
, matplotlib
|
||||
, unidecode
|
||||
, buildPythonPackage
|
||||
, cdcs
|
||||
, datamodeldict
|
||||
, xmltodict
|
||||
, fetchPypi
|
||||
, habanero
|
||||
, ipywidgets
|
||||
, lxml
|
||||
, matplotlib
|
||||
, numpy
|
||||
, pandas
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, requests
|
||||
, scipy
|
||||
, unidecode
|
||||
, xmltodict
|
||||
}:
|
||||
|
||||
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
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue