1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +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 { lib
, buildPythonPackage
, fetchPypi
, ipywidgets
, cdcs
, bibtexparser , bibtexparser
, habanero , buildPythonPackage
, pandas , cdcs
, requests
, numpy
, matplotlib
, unidecode
, datamodeldict , datamodeldict
, xmltodict , fetchPypi
, habanero
, ipywidgets
, lxml
, matplotlib
, numpy
, pandas
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, requests
, scipy
, unidecode
, xmltodict
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -29,16 +31,18 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
ipywidgets
cdcs
bibtexparser bibtexparser
cdcs
datamodeldict
habanero habanero
ipywidgets
lxml
matplotlib
numpy
pandas pandas
requests requests
numpy scipy
matplotlib
unidecode unidecode
datamodeldict
xmltodict xmltodict
]; ];