1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 dash,
6 hatchling,
7}:
8
9buildPythonPackage rec {
10 pname = "dash-bootstrap-components";
11 version = "2.0.4";
12 pyproject = true;
13
14 src = fetchPypi {
15 inherit version;
16 pname = "dash_bootstrap_components";
17 hash = "sha256-wyBsCSN3S7xqbdqngiuNmqUyaw08HnzXlcyXUCX+JIQ=";
18 };
19
20 build-system = [ hatchling ];
21
22 dependencies = [ dash ];
23
24 # Tests a additional requirements
25 doCheck = false;
26
27 pythonImportsCheck = [ "dash_bootstrap_components" ];
28
29 meta = with lib; {
30 description = "Bootstrap components for Plotly Dash";
31 homepage = "https://github.com/facultyai/dash-bootstrap-components";
32 changelog = "https://github.com/facultyai/dash-bootstrap-components/releases/tag/${version}";
33 license = licenses.asl20;
34 maintainers = with maintainers; [ fab ];
35 };
36}