python310Packages.bokeh 0 -> 1 attrpath: python310Packages.bokeh Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/wqfjya7nkmm7p3dqqmxvbhivz2kcqg43-packages.json.drv building '/nix/store/wqfjya7nkmm7p3dqqmxvbhivz2kcqg43-packages.json.drv'... Going to be running update for following packages: - python3.10-bokeh-2.4.3 Press Enter key to continue... Running update for: - python3.10-bokeh-2.4.3: UPDATING ... - python3.10-bokeh-2.4.3: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/bokeh/default.nix b/pkgs/development/python-modules/bokeh/default.nix index 75ca944830f..2289d16c0d0 100644 --- a/pkgs/development/python-modules/bokeh/default.nix +++ b/pkgs/development/python-modules/bokeh/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pname = "bokeh"; # update together with panel which is not straightforward - version = "2.4.3"; + version = "3.0.3"; src = fetchPypi { inherit pname version; - sha256 = "sha256-7zOAEWGvN5Zlq3o0aE8iCYYeOu/VyAOiH7u5nZSHSwM="; + sha256 = "sha256-HChHHvXmEQulvtUTE3/SYFTrxEVLx2hlDq7vxTuJioo="; }; patches = [ No auto update branch exists Old version 2.4.3" not present in staging derivation file with contents: { buildPythonPackage , fetchPypi , futures ? null , isPy27 , isPyPy , jinja2 , lib , mock , numpy , nodejs , packaging , pillow #, pytestCheckHook# , pytest , python-dateutil , pyyaml , selenium , six , substituteAll , tornado , typing-extensions , pytz , flaky , networkx , beautifulsoup4 , requests , nbconvert , icalendar , pandas , pythonImportsCheckHook , contourpy , xyzservices }: buildPythonPackage rec { pname = "bokeh"; # update together with panel which is not straightforward version = "3.0.3"; format = "setuptools"; src = fetchPypi { inherit pname version; hash= "sha256-HChHHvXmEQulvtUTE3/SYFTrxEVLx2hlDq7vxTuJioo="; }; patches = [ (substituteAll { src = ./hardcode-nodejs-npmjs-paths.patch; node_bin = "${nodejs}/bin/node"; npm_bin = "${nodejs}/bin/npm"; }) ]; disabled = isPyPy || isPy27; nativeBuildInputs = [ pythonImportsCheckHook ]; pythonImportsCheck = [ "bokeh" ]; checkInputs = [ mock pytest pillow selenium pytz flaky networkx beautifulsoup4 requests nbconvert icalendar ]; propagatedBuildInputs = [ contourpy pillow jinja2 python-dateutil six pyyaml tornado numpy pandas packaging typing-extensions xyzservices ] ++ lib.optionals ( isPy27 ) [ futures ]; # This test suite is a complete pain. Somehow it can't find its fixtures. doCheck = false; meta = { description = "Statistical and novel interactive HTML plots for Python"; homepage = "https://github.com/bokeh/bokeh"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ orivej ]; }; }