python311Packages.bqplot 0.12.39 -> 0.12.40 https://repology.org/project/python:bqplot/versions attrpath: python311Packages.bqplot 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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/c27xi9v7fzqhs5d78zg6gqh933hb288b-packages.json.drv building '/nix/store/c27xi9v7fzqhs5d78zg6gqh933hb288b-packages.json.drv'... Going to be running update for following packages: - python3.11-bqplot-0.12.39 Press Enter key to continue... Running update for: - python3.11-bqplot-0.12.39: UPDATING ... - python3.11-bqplot-0.12.39: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/bqplot/default.nix b/pkgs/development/python-modules/bqplot/default.nix index 5695be669bbc..4ae4aae24263 100644 --- a/pkgs/development/python-modules/bqplot/default.nix +++ b/pkgs/development/python-modules/bqplot/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "bqplot"; - version = "0.12.39"; + version = "0.12.42"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-FNjeb5pNGUW76mwTIOpNHJMlb3JoN3T24AINzFefPdI="; + hash = "sha256-mUhvdMq8/f+EHf7kG6bStHeC2Fo0/zajSiI9Q//Apyk="; }; # upstream seems in flux for 0.13 release. they seem to want to migrate from No auto update branch exists Old version 0.12.39" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchPypi , jupyter-packaging , jupyterlab , bqscales , ipywidgets , numpy , pandas , traitlets , traittypes }: buildPythonPackage rec { pname = "bqplot"; version = "0.12.40"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-7L/ovwTwRFju5G3Cwvgla0wVIdRvlEOOm+GTieT4b7k="; }; # upstream seems in flux for 0.13 release. they seem to want to migrate from # jupyter_packaging to hatch, so let's patch instead of fixing upstream postPatch = '' substituteInPlace pyproject.toml \ --replace "jupyter_packaging~=" "jupyter_packaging>=" \ --replace "jupyterlab~=" "jupyterlab>=" ''; nativeBuildInputs = [ jupyter-packaging jupyterlab ]; propagatedBuildInputs = [ bqscales ipywidgets numpy pandas traitlets traittypes ]; # no tests in PyPI dist, and not obvious to me how to build the js files from GitHub doCheck = false; pythonImportsCheck = [ "bqplot" "bqplot.pyplot" ]; meta = { description = "2D plotting library for Jupyter based on Grammar of Graphics"; homepage = "https://bqplot.github.io/bqplot"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ bcdarwin ]; }; }