python312Packages.ddt 1.7.0 -> 1.7.2 https://github.com/txels/ddt/releases attrpath: python312Packages.ddt 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/l62qamylmjpq3qd71fklvsxpb6jflpca-packages.json.drv building '/nix/store/l62qamylmjpq3qd71fklvsxpb6jflpca-packages.json.drv'... Going to be running update for following packages: - python3.12-ddt-1.7.0 Press Enter key to continue... Running update for: - python3.12-ddt-1.7.0: UPDATING ... - python3.12-ddt-1.7.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/ddt/default.nix b/pkgs/development/python-modules/ddt/default.nix index f0def3a3ad38..1923fb5733c1 100644 --- a/pkgs/development/python-modules/ddt/default.nix +++ b/pkgs/development/python-modules/ddt/default.nix @@ -16,12 +16,12 @@ buildPythonPackage rec { pname = "ddt"; - version = "1.7.0"; + version = "1.7.2"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-0XjRFavyWhuDJ+lPhaA+8JsdewyiVvYgMoSwJPL8cN8="; + hash = "sha256-0hXWsIOWMBPEoZseTc1qlugOQ6t3UZWXpqz88umj4Es="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.7.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder # build-system , setuptools # tests , aiounittest , mock , pytestCheckHook , pyyaml , six }: buildPythonPackage rec { pname = "ddt"; version = "1.7.2"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-0hXWsIOWMBPEoZseTc1qlugOQ6t3UZWXpqz88umj4Es="; }; nativeBuildInputs = [ setuptools ]; # aiounittest is not compatible with Python 3.12. doCheck = pythonOlder "3.12"; nativeCheckInputs = [ aiounittest mock pytestCheckHook pyyaml six ]; meta = with lib; { changelog = "https://github.com/datadriventests/ddt/releases/tag/${version}"; description = "Data-Driven/Decorated Tests, a library to multiply test cases"; homepage = "https://github.com/txels/ddt"; maintainers = with maintainers; [ ]; license = licenses.mit; }; }