python311Packages.faker 0 -> 1 attrpath: python311Packages.faker 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] Going to be running update for following packages: - python3.11-faker-24.0.0 Press Enter key to continue... Running update for: - python3.11-faker-24.0.0: UPDATING ... - python3.11-faker-24.0.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/faker/default.nix b/pkgs/development/python-modules/faker/default.nix index ec667330a62b..c0944e473fe7 100644 --- a/pkgs/development/python-modules/faker/default.nix +++ b/pkgs/development/python-modules/faker/default.nix @@ -13,13 +13,13 @@ buildPythonPackage rec { pname = "faker"; - version = "24.0.0"; + version = "24.11.0"; pyproject = true; src = fetchPypi { pname = "Faker"; inherit version; - hash = "sha256-6m94TEBzDeD3cGfknnjN1ZDvsAvsPTP1d0kiYiBsF/w="; + hash = "sha256-NLlHWBwrztNAw5s1+J2/rE81aTLP/4/ok73oVJA/Dm4="; }; nativeBuildInputs = [ No auto update branch exists Old version 24.0.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , freezegun , pillow , pytestCheckHook , python-dateutil , setuptools , text-unidecode , ukpostcodeparser , validators }: buildPythonPackage rec { pname = "faker"; version = "24.11.0"; pyproject = true; src = fetchPypi { pname = "Faker"; inherit version; hash = "sha256-NLlHWBwrztNAw5s1+J2/rE81aTLP/4/ok73oVJA/Dm4="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ python-dateutil text-unidecode ]; nativeCheckInputs = [ freezegun pillow pytestCheckHook ukpostcodeparser validators ]; # avoid tests which import random2, an abandoned library pytestFlagsArray = [ "--ignore=tests/providers/test_ssn.py" ]; pythonImportsCheck = [ "faker" ]; meta = with lib; { description = "Python library for generating fake user data"; mainProgram = "faker"; homepage = "http://faker.rtfd.org"; license = licenses.mit; maintainers = with maintainers; [ lovek323 ]; }; }