Merge pull request #326103 from wegank/holoviews-fix
python311Packages.holoviews: fix build
This commit is contained in:
commit
232a276733
@ -1,34 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
bokeh,
|
||||
buildPythonPackage,
|
||||
colorcet,
|
||||
fetchPypi,
|
||||
ipython,
|
||||
matplotlib,
|
||||
notebook,
|
||||
hatch-vcs,
|
||||
hatchling,
|
||||
numpy,
|
||||
pandas,
|
||||
panel,
|
||||
param,
|
||||
pythonOlder,
|
||||
pyviz-comms,
|
||||
scipy,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "holoviews";
|
||||
version = "1.19.0";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-yrFSL3WptGN3+TZLZ1vv15gS4iAFlxRHCljiFHXVMbo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
build-system = [
|
||||
hatch-vcs
|
||||
hatchling
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
colorcet
|
||||
numpy
|
||||
pandas
|
||||
|
@ -7,21 +7,24 @@
|
||||
holoviews,
|
||||
pandas,
|
||||
pythonOlder,
|
||||
setuptools-scm,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hvplot";
|
||||
version = "0.10.0";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-6HSGqVv+FRq1LvFjpek9nL0EOZLPC3Vcyt0r82/t03Y=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
build-system = [ setuptools-scm ];
|
||||
|
||||
dependencies = [
|
||||
bokeh
|
||||
colorcet
|
||||
holoviews
|
||||
|
Loading…
Reference in New Issue
Block a user