python3Packages.dash-core-components: init at 4.6.0

wip/yesman
Antoine Roy-Gobeil 5 years ago committed by Jon
parent c8007a7413
commit 6030346166
  1. 23
      pkgs/development/python-modules/dash-table/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "dash_table";
version = "4.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "01wzac09ac6nr27if1liaxafzdf67x00vw1iq5vaad1147rdh36k";
};
# No tests in archive
doCheck = false;
meta = {
description = "A First-Class Interactive DataTable for Dash";
homepage = https://dash.plot.ly/datatable;
license = with lib.licenses; [ mit ];
};
}

@ -2452,6 +2452,8 @@ in {
dash-renderer = callPackage ../development/python-modules/dash-renderer { };
dash-table = callPackage ../development/python-modules/dash-table { };
dateparser = callPackage ../development/python-modules/dateparser { };
# Actual name of package

Loading…
Cancel
Save