depot/third_party/nixpkgs/pkgs/development/python-modules/dash-table/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

24 lines
496 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "dash_table";
version = "4.6.2";
src = fetchPypi {
inherit pname version;
sha256 = "1hn1yjz5ig2kzkk0wkr75q3l4lrfbnsh0kxzlld9sfn69d1vvsjw";
};
# 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 ];
};
}