python3Packages.pyrevolve: 2.2.4 -> 2.2.6

https://github.com/devitocodes/pyrevolve/releases/tag/v2.2.6

This commit was automatically generated using update-python-libraries.

Changed files
+4 -4
pkgs
development
python-modules
pyrevolve
+4 -4
pkgs/development/python-modules/pyrevolve/default.nix
···
buildPythonPackage rec {
pname = "pyrevolve";
-
version = "2.2.4";
+
version = "2.2.6";
format = "pyproject";
disabled = pythonOlder "3.7";
···
src = fetchFromGitHub {
owner = "devitocodes";
repo = pname;
-
rev = "refs/tags/v${version}";
-
hash = "sha256-fcIq/zuKO3W7K9N2E4f2Q6ZVcssZwN/n8o9cCOYmr3E=";
+
tag = "v${version}";
+
hash = "sha256-jjiFOlxXjaa4L4IEtojeeS0jx4GsftAeIGBpJLhUcY4=";
};
postPatch = ''
···
meta = with lib; {
homepage = "https://github.com/devitocodes/pyrevolve";
-
changelog = "https://github.com/devitocodes/pyrevolve/releases/tag/v${version}";
+
changelog = "https://github.com/devitocodes/pyrevolve/releases/tag/${src.tag}";
description = "Python library to manage checkpointing for adjoints";
license = licenses.epl10;
maintainers = with maintainers; [ atila ];