blob: 309cf41d09ddd0e32c44763408751f893466ef9d (
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
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
packaging,
pytestCheckHook,
setuptools,
streamlit,
}:
buildPythonPackage rec {
pname = "streamlit-notify";
version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pgarrett-scripps";
repo = "Streamlit_Notify";
tag = "v${version}";
hash = "sha256-MI+8fh7aKk7kOVxq3677cVWsiMmE0NSXWukN+Bc0noM=";
};
build-system = [ setuptools ];
dependencies = [
packaging
streamlit
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "streamlit_notify" ];
meta = {
description = "Queues and displays Streamlit Status Elements notifications";
homepage = "https://github.com/pgarrett-scripps/Streamlit_Notify";
changelog = "https://github.com/pgarrett-scripps/Streamlit_Notify/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|