python310Packages.faker 0 -> 1 attrpath: python310Packages.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.10-faker-19.6.1 Press Enter key to continue... Running update for: - python3.10-faker-19.6.1: UPDATING ... - python3.10-faker-19.6.1: 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 7f414741b39e..174a519b8f13 100644 --- a/pkgs/development/python-modules/faker/default.nix +++ b/pkgs/development/python-modules/faker/default.nix @@ -12,13 +12,13 @@ buildPythonPackage rec { pname = "faker"; - version = "19.6.1"; + version = "21.0.0"; format = "setuptools"; src = fetchPypi { pname = "Faker"; inherit version; - hash = "sha256-XWt4gLO+pwgHXd+Rk4QkRT8HBTpZ+PoEU8GHDfb/MpI="; + hash = "sha256-LYo1DpUiJaFFMH10YYgcRKHJMg6Q++i9kD1ZR/Ez8+w="; }; propagatedBuildInputs = [ No auto update branch exists Old version 19.6.1" 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 = "20.1.0"; pyproject = true; src = fetchPypi { pname = "Faker"; inherit version; hash = "sha256-Vio6CcPtOhp7IOE9efkE39/F50D3KBPs+V5M9x5aL1I="; }; 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 ]; }; }