forked from mirrors/nixpkgs
python310Packages.hvplot: disable on older Python releases
This commit is contained in:
parent
fc9d5ea630
commit
f6004cdb2e
|
@ -5,22 +5,21 @@
|
|||
, fetchPypi
|
||||
, holoviews
|
||||
, pandas
|
||||
, pythonImportsCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hvplot";
|
||||
version = "0.8.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-hjDbo0lpsQXiZ8vhQjfi1W2ZacgBmArl5RkLwYsnktY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pythonImportsCheckHook
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
bokeh
|
||||
colorcet
|
||||
|
|
Loading…
Reference in a new issue