nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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.

+4 -4
+4 -4
pkgs/development/python-modules/pyrevolve/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pyrevolve"; 16 - version = "2.2.4"; 16 + version = "2.2.6"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 21 21 src = fetchFromGitHub { 22 22 owner = "devitocodes"; 23 23 repo = pname; 24 - rev = "refs/tags/v${version}"; 25 - hash = "sha256-fcIq/zuKO3W7K9N2E4f2Q6ZVcssZwN/n8o9cCOYmr3E="; 24 + tag = "v${version}"; 25 + hash = "sha256-jjiFOlxXjaa4L4IEtojeeS0jx4GsftAeIGBpJLhUcY4="; 26 26 }; 27 27 28 28 postPatch = '' ··· 51 51 52 52 meta = with lib; { 53 53 homepage = "https://github.com/devitocodes/pyrevolve"; 54 - changelog = "https://github.com/devitocodes/pyrevolve/releases/tag/v${version}"; 54 + changelog = "https://github.com/devitocodes/pyrevolve/releases/tag/${src.tag}"; 55 55 description = "Python library to manage checkpointing for adjoints"; 56 56 license = licenses.epl10; 57 57 maintainers = with maintainers; [ atila ];