1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5
6 # build-system
7 setuptools,
8 setuptools-git-versioning,
9
10 # dependencies
11 icalendar,
12 pandas,
13}:
14
15buildPythonPackage rec {
16 pname = "bokeh-sampledata";
17 version = "2025.0";
18 pyproject = true;
19
20 src = fetchPypi {
21 pname = "bokeh_sampledata";
22 inherit version;
23 hash = "sha256-a4dK9bh45w8WEzaVrAfhXeOGQvqfrf33I/fUIzOWevQ=";
24 };
25
26 build-system = [
27 setuptools
28 setuptools-git-versioning
29 ];
30
31 dependencies = [
32 icalendar
33 pandas
34 ];
35
36 pythonImportsCheck = [
37 "bokeh_sampledata"
38 ];
39
40 meta = {
41 description = "Sample datasets for Bokeh examples";
42 homepage = "https://pypi.org/project/bokeh-sampledata";
43 license = lib.licenses.bsd3;
44 maintainers = with lib.maintainers; [ doronbehar ];
45 };
46}