From a6bea71dabb32141a79229430626c9a5d7c8f1e9 Mon Sep 17 00:00:00 2001 From: Antoine Roy-Gobeil Date: Fri, 17 Jan 2020 13:24:34 -0500 Subject: [PATCH] python3Packages.dash-html-components: init at 1.0.2 --- .../dash-html-components/default.nix | 23 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/development/python-modules/dash-html-components/default.nix 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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0c71ded90b8..18fd33a03aa 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2448,6 +2448,8 @@ in { dash-core-components = callPackage ../development/python-modules/dash-core-components { }; + dash-html-components = callPackage ../development/python-modules/dash-html-components { }; + dateparser = callPackage ../development/python-modules/dateparser { }; # Actual name of package