summary refs log tree commit diff
path: root/pkgs/development/python-modules/dash-core-components/default.nix
blob: dfcbb9b6404a8b6481c87bbf8dd923de660902ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "dash_core_components";
  version = "1.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "16jjanq4glj6c2cwyw94954hrqqv49fknisbxj03lfmflg61j32k";
  };

  # No tests in archive
  doCheck = false;

  meta = with lib; {
    description = "A dash component starter pack";
    homepage = https://dash.plot.ly/dash-core-components;
    license = licenses.mit;
    maintainers = [ maintainers.antoinerg ];
  };
}