python310Packages.pytest-jupyter 0.6.2 -> 0.7.0 https://repology.org/project/python:pytest-jupyter/versions attrpath: python310Packages.pytest-jupyter 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/9hlk2zy7fggcbrg5ydv30z425m48krg5-packages.json.drv building '/nix/store/9hlk2zy7fggcbrg5ydv30z425m48krg5-packages.json.drv'... Going to be running update for following packages: - python3.10-pytest-jupyter-0.6.2 Press Enter key to continue... Running update for: - python3.10-pytest-jupyter-0.6.2: UPDATING ... - python3.10-pytest-jupyter-0.6.2: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pytest-jupyter/default.nix b/pkgs/development/python-modules/pytest-jupyter/default.nix index f9e49cf09144..6f5f6484a570 100644 --- a/pkgs/development/python-modules/pytest-jupyter/default.nix +++ b/pkgs/development/python-modules/pytest-jupyter/default.nix @@ -22,14 +22,14 @@ let self = buildPythonPackage rec { pname = "pytest-jupyter"; - version = "0.6.2"; + version = "0.7.0"; format = "pyproject"; src = fetchFromGitHub { owner = "jupyter-server"; repo = "pytest-jupyter"; rev = "refs/tags/v${version}"; - hash = "sha256-kY4QHrlj0opEBywe4SpwE4Ck6l6JIzEosx6uuXh+yCQ="; + hash = "sha256-ZocpIBHnXTvQdjWU8yVhGK49I+FFct+teDhghiMnvW0="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.6.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub # build , hatchling , pytest # runtime , jupyter-core # optionals , jupyter-client , ipykernel , jupyter-server , nbformat # tests , pytest-timeout , pytestCheckHook }: let self = buildPythonPackage rec { pname = "pytest-jupyter"; version = "0.7.0"; format = "pyproject"; src = fetchFromGitHub { owner = "jupyter-server"; repo = "pytest-jupyter"; rev = "refs/tags/v${version}"; hash = "sha256-ZocpIBHnXTvQdjWU8yVhGK49I+FFct+teDhghiMnvW0="; }; nativeBuildInputs = [ hatchling ]; buildInputs = [ pytest ]; propagatedBuildInputs = [ jupyter-core ]; passthru.optional-dependencies = rec { client = [ jupyter-client ipykernel ]; server = [ jupyter-server nbformat ] ++ client; }; doCheck = false; # infinite recursion with jupyter-server nativeCheckInputs = [ pytest-timeout pytestCheckHook ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); passthru.tests = { check = self.overridePythonAttrs (_: { doCheck = false; }); }; meta = with lib; { changelog = "https://github.com/jupyter-server/pytest-jupyter/releases/tag/v${version}"; description = "pytest plugin for testing Jupyter core libraries and extensions"; homepage = "https://github.com/jupyter-server/pytest-jupyter"; license = licenses.bsd3; maintainers = with maintainers; [ ]; }; }; in self