python310Packages.nbval 0 -> 1 attrpath: python310Packages.nbval 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/hf13a2jql1zk5mmra7slfj0ayy5r0kvh-packages.json.drv building '/nix/store/hf13a2jql1zk5mmra7slfj0ayy5r0kvh-packages.json.drv'... Going to be running update for following packages: - python3.10-nbval-0.9.6 Press Enter key to continue... Running update for: - python3.10-nbval-0.9.6: UPDATING ... - python3.10-nbval-0.9.6: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/nbval/default.nix b/pkgs/development/python-modules/nbval/default.nix index 1e135a80d1c..7559772ad65 100644 --- a/pkgs/development/python-modules/nbval/default.nix +++ b/pkgs/development/python-modules/nbval/default.nix @@ -15,11 +15,11 @@ buildPythonPackage rec { pname = "nbval"; - version = "0.9.6"; + version = "0.10.0"; src = fetchPypi { inherit pname version; - sha256 = "cfefcd2ef66ee2d337d0b252c6bcec4023384eb32e8b9e5fcc3ac80ab8cd7d40"; + sha256 = "sha256-tKzv3BEyrvihtbYr+ak9Eo66UoObKFTqPkJZj023vrM="; }; buildInputs = [ No auto update branch exists Old version 0.9.6" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder , coverage , ipykernel , jupyter-client , nbformat , pytestCheckHook , pytest , six , glibcLocales , matplotlib , sympy }: buildPythonPackage rec { pname = "nbval"; version = "0.10.0"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-tKzv3BEyrvihtbYr+ak9Eo66UoObKFTqPkJZj023vrM="; }; buildInputs = [ glibcLocales ]; propagatedBuildInputs = [ coverage ipykernel jupyter-client nbformat pytest ]; nativeCheckInputs = [ pytestCheckHook matplotlib sympy ]; disabledTestPaths = [ "tests/test_ignore.py" # These are the main tests but they're fragile so skip them. They error # whenever matplotlib outputs any unexpected warnings, e.g. deprecation # warnings. "tests/test_unit_tests_in_notebooks.py" # Impure "tests/test_timeouts.py" # No value for us "tests/test_coverage.py" # nbdime marked broken "tests/test_nbdime_reporter.py" ]; # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; pythonImportsCheck = [ "nbval" ]; meta = with lib; { description = "A py.test plugin to validate Jupyter notebooks"; homepage = "https://github.com/computationalmodelling/nbval"; license = licenses.bsd3; maintainers = with maintainers; [ costrouc ]; }; }