python31{1,2}Packages.bokeh-sampledata: init at 2024.2
This commit is contained in:
parent
84cdacd319
commit
72ddbd5cae
pkgs
46
pkgs/development/python-modules/bokeh-sampledata/default.nix
Normal file
46
pkgs/development/python-modules/bokeh-sampledata/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1753,6 +1753,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
bokeh = callPackage ../development/python-modules/bokeh { };
|
bokeh = callPackage ../development/python-modules/bokeh { };
|
||||||
|
|
||||||
|
bokeh-sampledata = callPackage ../development/python-modules/bokeh-sampledata { };
|
||||||
|
|
||||||
boltons = callPackage ../development/python-modules/boltons { };
|
boltons = callPackage ../development/python-modules/boltons { };
|
||||||
|
|
||||||
boltztrap2 = callPackage ../development/python-modules/boltztrap2 { };
|
boltztrap2 = callPackage ../development/python-modules/boltztrap2 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user