blob: 9e5d7919a186e6698b8d1cbbdc3bf8b0b939b34a (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
dash,
hatchling,
}:
buildPythonPackage rec {
pname = "dash-bootstrap-components";
version = "2.0.4";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "dash_bootstrap_components";
hash = "sha256-wyBsCSN3S7xqbdqngiuNmqUyaw08HnzXlcyXUCX+JIQ=";
};
build-system = [ hatchling ];
dependencies = [ dash ];
# Tests a additional requirements
doCheck = false;
pythonImportsCheck = [ "dash_bootstrap_components" ];
meta = {
description = "Bootstrap components for Plotly Dash";
homepage = "https://github.com/facultyai/dash-bootstrap-components";
changelog = "https://github.com/facultyai/dash-bootstrap-components/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|