blob: c3a5a1d7ab9e3bd6061257f5a80308e5b82ae75c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
streamlit,
}:
buildPythonPackage rec {
pname = "extra-streamlit-components";
version = "0.1.81";
pyproject = true;
src = fetchPypi {
pname = "extra_streamlit_components";
inherit version;
hash = "sha256-65vre6z+iz0jjxiIohx4rGz6VpNBvkhLygjD6gsV8g0=";
};
build-system = [ setuptools ];
dependencies = [ streamlit ];
pythonImportsCheck = [ "extra_streamlit_components" ];
# Module has no tests
doCheck = false;
meta = {
description = "Additional components for streamlit";
homepage = "https://pypi.org/project/extra-streamlit-components/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|