python311Packages.ipyvuetify 0 -> 1 attrpath: python311Packages.ipyvuetify 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/pbzknwav0l3isb4rq65s7g4vxqjy0lr0-packages.json.drv building '/nix/store/pbzknwav0l3isb4rq65s7g4vxqjy0lr0-packages.json.drv'... Going to be running update for following packages: - python3.11-ipyvuetify-1.9.0 Press Enter key to continue... Running update for: - python3.11-ipyvuetify-1.9.0: UPDATING ... - python3.11-ipyvuetify-1.9.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/ipyvuetify/default.nix b/pkgs/development/python-modules/ipyvuetify/default.nix index 499d6a043854..8c3bbf654c2b 100644 --- a/pkgs/development/python-modules/ipyvuetify/default.nix +++ b/pkgs/development/python-modules/ipyvuetify/default.nix @@ -11,13 +11,13 @@ buildPythonPackage rec { pname = "ipyvuetify"; - version = "1.9.0"; + version = "1.9.2"; pyproject = true; # GitHub version tries to run npm (Node JS) src = fetchPypi { inherit pname version; - hash = "sha256-nFN+IYKZ3jIZSx2pSda5a//mwA82u2A1QJ8khf64gec="; + hash = "sha256-kAcL/PR3jThbmfDKMBQRPbcDyZ7GrRwuzDLWE8bC1M4="; }; # drop pynpm which tries to install node_modules No auto update branch exists Old version 1.9.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi # Python Inputs , jupyter-packaging , jupyterlab , setuptools , wheel , ipyvue }: buildPythonPackage rec { pname = "ipyvuetify"; version = "1.9.1"; pyproject = true; # GitHub version tries to run npm (Node JS) src = fetchPypi { inherit pname version; hash = "sha256-MAqO6wREtnaVCgG88UXYsKlLpkizbtPqmeQ9u3UVnU0="; }; # drop pynpm which tries to install node_modules postPatch = '' substituteInPlace pyproject.toml \ --replace-fail "jupyter_packaging~=0.7.9" "jupyter_packaging" \ --replace-fail "jupyterlab~=3.0" "jupyterlab" \ --replace-fail '"pynpm"' "" substituteInPlace setup.py \ --replace-fail "from pynpm import NPMPackage" "" \ --replace-fail "from generate_source import generate_source" "" \ --replace-fail 'setup(cmdclass={"egg_info": js_prerelease(egg_info)})' 'setup()' ''; nativeBuildInputs = [ jupyter-packaging jupyterlab setuptools wheel ]; propagatedBuildInputs = [ ipyvue ]; doCheck = false; # no tests on PyPi/GitHub pythonImportsCheck = [ "ipyvuetify" ]; meta = with lib; { description = "Jupyter widgets based on Vuetify UI Components."; homepage = "https://github.com/mariobuikhuizen/ipyvuetify"; license = licenses.mit; maintainers = with maintainers; [ drewrisinger ]; }; }