1
0
Fork 1
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:
Fabian Affolter 2021-11-26 21:36:41 +01:00
parent 650120d8f9
commit 85585e9d13

View file

@ -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
];