blob: 5a0ef31869b97c31b0b7bf58c7d7eb1d834cad18 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "dash-core-components";
version = "2.0.0";
format = "setuptools";
src = fetchPypi {
pname = "dash_core_components";
inherit version;
hash = "sha256-xnM4dK+XXlUvlaE5ihbC7n3xTOQ/pguzcYo8bgtj/+4=";
};
# No tests in archive
doCheck = false;
meta = {
description = "Dash component starter pack";
homepage = "https://dash.plot.ly/dash-core-components";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.antoinerg ];
};
}
|