python311Packages.virtualenv 0 -> 1 attrpath: python311Packages.virtualenv 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/9s3ygkig6an2jmk7lqbxd4zdhp3sccp0-packages.json.drv building '/nix/store/9s3ygkig6an2jmk7lqbxd4zdhp3sccp0-packages.json.drv'... Going to be running update for following packages: - python3.11-virtualenv-20.25.0 Press Enter key to continue... Running update for: - python3.11-virtualenv-20.25.0: UPDATING ... - python3.11-virtualenv-20.25.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/virtualenv/default.nix b/pkgs/development/python-modules/virtualenv/default.nix index a79b5bcd6cc1..d291bbbbeccd 100644 --- a/pkgs/development/python-modules/virtualenv/default.nix +++ b/pkgs/development/python-modules/virtualenv/default.nix @@ -21,14 +21,14 @@ buildPythonPackage rec { pname = "virtualenv"; - version = "20.25.0"; + version = "20.25.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-v1HA2cfdY+qORAhvoeT7EJOjHpY7hpWSVzeK7wIOHxs="; + hash = "sha256-4I4T7NynoL1TeY81bVgxQ0r6Wwe5Pwq98Hl7egb/4Zc="; }; nativeBuildInputs = [ No auto update branch exists Old version 20.25.0" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , isPy27 , isPyPy , cython , distlib , fetchPypi , filelock , flaky , hatch-vcs , hatchling , importlib-metadata , platformdirs , pytest-freezegun , pytest-mock , pytest-timeout , pytestCheckHook , time-machine }: buildPythonPackage rec { pname = "virtualenv"; version = "20.25.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-4I4T7NynoL1TeY81bVgxQ0r6Wwe5Pwq98Hl7egb/4Zc="; }; nativeBuildInputs = [ hatch-vcs hatchling ]; propagatedBuildInputs = [ distlib filelock platformdirs ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; nativeCheckInputs = [ cython flaky pytest-freezegun pytest-mock pytest-timeout pytestCheckHook ] ++ lib.optionals (!isPyPy) [ time-machine ]; preCheck = '' export HOME=$(mktemp -d) ''; disabledTestPaths = [ # Ignore tests which require network access "tests/unit/create/test_creator.py" "tests/unit/seed/embed/test_bootstrap_link_via_app_data.py" ]; disabledTests = [ # Network access "test_create_no_seed" "test_seed_link_via_app_data" # Permission Error "test_bad_exe_py_info_no_raise" ] ++ lib.optionals (isPyPy) [ # encoding problems "test_bash" # permission error "test_can_build_c_extensions" # fails to detect pypy version "test_discover_ok" ]; pythonImportsCheck = [ "virtualenv" ]; meta = with lib; { description = "A tool to create isolated Python environments"; homepage = "http://www.virtualenv.org"; changelog = "https://github.com/pypa/virtualenv/blob/${version}/docs/changelog.rst"; license = licenses.mit; maintainers = with maintainers; [ goibhniu ]; }; }