blob: b8e61ffefbd8f652e8ae28cb986d04e0f79637fb (
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 = "streamlit-avatar";
version = "0.1.3";
pyproject = true;
src = fetchPypi {
pname = "streamlit_avatar";
inherit version;
hash = "sha256-AjiTvYDbWpI9OX/GTSfHqXIQfaTwvqD+uZoy+TY/JpE=";
};
build-system = [ setuptools ];
dependencies = [ streamlit ];
pythonImportsCheck = [ "streamlit_avatar" ];
# Module has no tests
doCheck = false;
meta = {
description = "Component to display avatar icon in Streamlit";
homepage = "https://pypi.org/project/streamlit-avatar/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|