summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorAntoine Roy-Gobeil <antoine@plot.ly>2020-01-17 13:24:34 -0500
committerJon <jonringer@users.noreply.github.com>2020-01-21 12:20:15 -0800
commita6bea71dabb32141a79229430626c9a5d7c8f1e9 (patch)
treef0569c680b96914802e561ebd5220e167d6e56ff /pkgs/development/python-modules
parentfe2af7506647fee07b7048b43fcb3eab02b19dda (diff)
downloadnixpkgs-a6bea71dabb32141a79229430626c9a5d7c8f1e9.tar
nixpkgs-a6bea71dabb32141a79229430626c9a5d7c8f1e9.tar.gz
nixpkgs-a6bea71dabb32141a79229430626c9a5d7c8f1e9.tar.bz2
nixpkgs-a6bea71dabb32141a79229430626c9a5d7c8f1e9.tar.lz
nixpkgs-a6bea71dabb32141a79229430626c9a5d7c8f1e9.tar.xz
nixpkgs-a6bea71dabb32141a79229430626c9a5d7c8f1e9.tar.zst
nixpkgs-a6bea71dabb32141a79229430626c9a5d7c8f1e9.zip
python3Packages.dash-html-components: init at 1.0.2
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/dash-html-components/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dash-html-components/default.nix b/pkgs/development/python-modules/dash-html-components/default.nix
new file mode 100644
index 00000000000..91604e3923b
--- /dev/null
+++ b/pkgs/development/python-modules/dash-html-components/default.nix
@@ -0,0 +1,23 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "dash_html_components";
+  version = "1.0.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "166agkrl52j5qin2npsdl2a96jccxz5f1jvcz0hxsnjg0ix0k4l9";
+  };
+
+  # No tests in archive
+  doCheck = false;
+
+  meta = {
+    description = "HTML components for Dash";
+    homepage = https://dash.plot.ly/dash-html-components;
+    license = with lib.licenses; [ mit ];
+  };
+}