Commit 72ddbd5c authored by Doron Behar's avatar Doron Behar
Browse files

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

parent 84cdacd3
Loading
Loading
Loading
Loading
+46 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };