Merge pull request #98062 from jonringer/fix-streamlit

streamlit: fix build
This commit is contained in:
Vladyslav M 2020-09-16 23:45:32 +03:00 committed by GitHub
commit 9147432d5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
{ lib, buildPythonApplication, fetchPypi { lib, buildPythonApplication, fetchPypi
, altair, astor, base58, blinker, boto3, botocore, click, enum-compat , altair, astor, base58, blinker, boto3, botocore, click, enum-compat
, future, pillow, protobuf, requests, toml, tornado, tzlocal, validators, watchdog , future, pillow, protobuf, requests, toml, tornado_5, tzlocal, validators, watchdog
, jinja2, setuptools , jinja2, setuptools
}: }:
@ -16,7 +16,7 @@ buildPythonApplication rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
altair astor base58 blinker boto3 botocore click enum-compat altair astor base58 blinker boto3 botocore click enum-compat
future pillow protobuf requests toml tornado tzlocal validators watchdog future pillow protobuf requests toml tornado_5 tzlocal validators watchdog
jinja2 setuptools jinja2 setuptools
]; ];