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

python3Packages.backrefs: 5.9 -> 6.0.1

https://github.com/facelessuser/backrefs/releases/tag/6.0.1

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

+3 -3
+3 -3
pkgs/development/python-modules/backrefs/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "backrefs"; 12 - version = "5.9"; 12 + version = "6.0.1"; 13 13 pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "facelessuser"; 17 17 repo = "backrefs"; 18 18 tag = version; 19 - hash = "sha256-W75JLoBn990PoO3Ej3nb3BjOGm0c71o8hDDBUFWr8i4="; 19 + hash = "sha256-7kB8z8pNU6eLuz4eSYXkSDL5npowlYsm0hjjh8zcAK0="; 20 20 }; 21 21 22 22 build-system = [ ··· 33 33 meta = { 34 34 description = "Wrapper around re or regex that adds additional back references"; 35 35 homepage = "https://github.com/facelessuser/backrefs"; 36 - changelog = "https://github.com/facelessuser/backrefs/releases/tag/${version}"; 36 + changelog = "https://github.com/facelessuser/backrefs/releases/tag/${src.tag}"; 37 37 license = lib.licenses.mit; 38 38 maintainers = with lib.maintainers; [ drupol ]; 39 39 };