nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "dash_core_components";
8 version = "1.7.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "16jjanq4glj6c2cwyw94954hrqqv49fknisbxj03lfmflg61j32k";
13 };
14
15 # No tests in archive
16 doCheck = false;
17
18 meta = with lib; {
19 description = "A dash component starter pack";
20 homepage = https://dash.plot.ly/dash-core-components;
21 license = licenses.mit;
22 maintainers = [ maintainers.antoinerg ];
23 };
24}