python31{1,2}Packages.bokeh-sampledata: init at 2024.2

This commit is contained in:
Doron Behar 2024-10-20 22:41:05 +03:00
parent 84cdacd319
commit 72ddbd5cae
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,46 @@
{
lib,
buildPythonPackage,
fetchPypi,
# build-system
setuptools,
setuptools-git-versioning,
# dependencies
icalendar,
pandas,
}:
buildPythonPackage rec {
pname = "bokeh-sampledata";
version = "2024.2";
pyproject = true;
src = fetchPypi {
pname = "bokeh_sampledata";
inherit version;
hash = "sha256-5j2qluedVj7IuE8gZy/+lPkFshRV+rjYPuM05G2jNiQ=";
};
build-system = [
setuptools
setuptools-git-versioning
];
dependencies = [
icalendar
pandas
];
pythonImportsCheck = [
"bokeh_sampledata"
];
meta = {
description = "Sample datasets for Bokeh examples";
homepage = "https://pypi.org/project/bokeh-sampledata";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ doronbehar ];
};
}

View File

@ -1753,6 +1753,8 @@ self: super: with self; {
bokeh = callPackage ../development/python-modules/bokeh { };
bokeh-sampledata = callPackage ../development/python-modules/bokeh-sampledata { };
boltons = callPackage ../development/python-modules/boltons { };
boltztrap2 = callPackage ../development/python-modules/boltztrap2 { };