472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
51 lines
899 B
Nix
51 lines
899 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
poetry-core,
|
|
pyarrow,
|
|
pytz,
|
|
textual,
|
|
tzdata,
|
|
polars,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "textual-fastdatatable";
|
|
version = "0.9.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "textual_fastdatatable";
|
|
inherit version;
|
|
hash = "sha256-AS3SiwetCHkCMu8H81xbp5QvN/2GCvMlWgU4qZKvBRU=";
|
|
};
|
|
|
|
build-system = [
|
|
poetry-core
|
|
];
|
|
|
|
dependencies = [
|
|
pyarrow
|
|
pytz
|
|
textual
|
|
tzdata
|
|
];
|
|
|
|
optional-dependencies = {
|
|
polars = [
|
|
polars
|
|
];
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"textual_fastdatatable"
|
|
];
|
|
|
|
meta = {
|
|
description = "A performance-focused reimplementation of Textual's DataTable widget, with a pluggable data storage backend";
|
|
homepage = "https://pypi.org/project/textual-fastdatatable/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ pcboy ];
|
|
};
|
|
}
|