5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
54 lines
888 B
Nix
54 lines
888 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
colorcet,
|
|
fetchPypi,
|
|
hatch-vcs,
|
|
hatchling,
|
|
numpy,
|
|
pandas,
|
|
panel,
|
|
param,
|
|
pythonOlder,
|
|
pyviz-comms,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "holoviews";
|
|
version = "1.19.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-yrFSL3WptGN3+TZLZ1vv15gS4iAFlxRHCljiFHXVMbo=";
|
|
};
|
|
|
|
build-system = [
|
|
hatch-vcs
|
|
hatchling
|
|
];
|
|
|
|
dependencies = [
|
|
colorcet
|
|
numpy
|
|
pandas
|
|
panel
|
|
param
|
|
pyviz-comms
|
|
];
|
|
|
|
# tests not fully included with pypi release
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "holoviews" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python data analysis and visualization seamless and simple";
|
|
mainProgram = "holoviews";
|
|
homepage = "https://www.holoviews.org/";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|