mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
python3Packages.dash-core-components: init at 4.6.0
This commit is contained in:
parent
c8007a7413
commit
6030346166
23
pkgs/development/python-modules/dash-table/default.nix
Normal file
23
pkgs/development/python-modules/dash-table/default.nix
Normal file
@ -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…
Reference in New Issue
Block a user