python310Packages.ipytablewidgets: init at 0.3.1
This commit is contained in:
parent
83b9200f6d
commit
a887febd06
2 changed files with 60 additions and 0 deletions
58
pkgs/development/python-modules/ipytablewidgets/default.nix
Normal file
58
pkgs/development/python-modules/ipytablewidgets/default.nix
Normal file
|
@ -0,0 +1,58 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, ipywidgets
|
||||
, jupyter-packaging
|
||||
, jupyterlab
|
||||
, lz4
|
||||
, numpy
|
||||
, pandas
|
||||
, setuptools
|
||||
, traitlets
|
||||
, traittypes
|
||||
, wheel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ipytablewidgets";
|
||||
version = "0.3.1";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-14vIih+r/PHLxhgG29YtwuosSBLpewD2CluWpH2+pLc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
jupyter-packaging
|
||||
jupyterlab
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ipywidgets
|
||||
lz4
|
||||
numpy
|
||||
pandas
|
||||
traitlets
|
||||
traittypes
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "ipytablewidgets" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Traitlets and widgets to efficiently data tables (e.g. Pandas DataFrame) using the jupyter notebook";
|
||||
homepage = "https://github.com/progressivis/ipytablewidgets";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ natsukium ];
|
||||
};
|
||||
}
|
|
@ -5217,6 +5217,8 @@ self: super: with self; {
|
|||
|
||||
ipyparallel = callPackage ../development/python-modules/ipyparallel { };
|
||||
|
||||
ipytablewidgets = callPackage ../development/python-modules/ipytablewidgets { };
|
||||
|
||||
ipython_genutils = callPackage ../development/python-modules/ipython_genutils { };
|
||||
|
||||
ipython = callPackage ../development/python-modules/ipython { };
|
||||
|
|
Loading…
Reference in a new issue