nixpkgs/pkgs/development/python-modules/dash-table/default.nix
2020-08-09 12:18:26 -07:00

25 lines
508 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "dash_table";
version = "4.9.0";
src = fetchPypi {
inherit pname version;
sha256 = "2f19000051730291100cd3a79b13fa62c478aea7908f2e4323c13b90f09e3320";
};
# No tests in archive
doCheck = false;
meta = with lib; {
description = "A First-Class Interactive DataTable for Dash";
homepage = "https://dash.plot.ly/datatable";
license = licenses.mit;
maintainers = [ maintainers.antoinerg ];
};
}