Merge pull request #326103 from wegank/holoviews-fix

python311Packages.holoviews: fix build
This commit is contained in:
Weijia Wang 2024-07-16 01:26:58 +02:00 committed by GitHub
commit 232a276733
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 11 deletions

View File

@ -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

View File

@ -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