python312Packages.faker 20.1.0 -> 24.2.0 https://repology.org/project/python:faker/versions attrpath: python312Packages.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] this derivation will be built: /nix/store/2vqzzyxviwnbbziniv4vr0c0gj9ja474-packages.json.drv building '/nix/store/2vqzzyxviwnbbziniv4vr0c0gj9ja474-packages.json.drv'... Going to be running update for following packages: - python3.12-faker-20.1.0 Press Enter key to continue... Running update for: - python3.12-faker-20.1.0: UPDATING ... - python3.12-faker-20.1.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 68e0e4e3b5ea..51a82be2fc26 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 = "20.1.0"; + version = "24.2.0"; pyproject = true; src = fetchPypi { pname = "Faker"; inherit version; - hash = "sha256-Vio6CcPtOhp7IOE9efkE39/F50D3KBPs+V5M9x5aL1I="; + hash = "sha256-h9XncwQm57NoF5IWecTq89gQztuMgRlPR63D3yEiyhg="; }; nativeBuildInputs = [ No auto update branch exists Old version 20.1.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.0.0"; pyproject = true; src = fetchPypi { pname = "Faker"; inherit version; hash = "sha256-6m94TEBzDeD3cGfknnjN1ZDvsAvsPTP1d0kiYiBsF/w="; }; 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"; homepage = "http://faker.rtfd.org"; license = licenses.mit; maintainers = with maintainers; [ lovek323 ]; }; }