python312Packages.attrs 23.1.0 -> 23.2.0 https://github.com/python-attrs/attrs/releases attrpath: python312Packages.attrs 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/i1p8j6caffbj80dd1rsivkp44jbjsckm-packages.json.drv building '/nix/store/i1p8j6caffbj80dd1rsivkp44jbjsckm-packages.json.drv'... Going to be running update for following packages: - python3.12-attrs-23.1.0 Press Enter key to continue... Running update for: - python3.12-attrs-23.1.0: UPDATING ... - python3.12-attrs-23.1.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/attrs/default.nix b/pkgs/development/python-modules/attrs/default.nix index a298dc36f507..8e46432b810f 100644 --- a/pkgs/development/python-modules/attrs/default.nix +++ b/pkgs/development/python-modules/attrs/default.nix @@ -8,13 +8,13 @@ buildPythonPackage rec { pname = "attrs"; - version = "23.1.0"; + version = "23.2.0"; disabled = pythonOlder "3.7"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-YnmDbVgVE6JvG/I1+azTM7yRFWg/FPfo+uRsmPxQ4BU="; + hash = "sha256-k13DtSnCYvbPduUId9NaS9PB3hlP1B9HoreujxmXHzA="; }; patches = [ No auto update branch exists Old version 23.1.0" not present in staging derivation file with contents: { lib , callPackage , buildPythonPackage , fetchPypi , pythonOlder , hatchling }: buildPythonPackage rec { pname = "attrs"; version = "23.2.0"; disabled = pythonOlder "3.7"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-k13DtSnCYvbPduUId9NaS9PB3hlP1B9HoreujxmXHzA="; }; patches = [ # hatch-vcs and hatch-fancy-pypi-readme depend on pytest, which depends on attrs ./remove-hatch-plugins.patch ]; postPatch = '' substituteAllInPlace pyproject.toml ''; nativeBuildInputs = [ hatchling ]; outputs = [ "out" "testout" ]; postInstall = '' # Install tests as the tests output. mkdir $testout cp -R conftest.py tests $testout ''; pythonImportsCheck = [ "attr" ]; # pytest depends on attrs, so we can't do this out-of-the-box. # Instead, we do this as a passthru.tests test. doCheck = false; passthru.tests = { pytest = callPackage ./tests.nix { }; }; meta = with lib; { description = "Python attributes without boilerplate"; homepage = "https://github.com/python-attrs/attrs"; changelog = "https://github.com/python-attrs/attrs/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }