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

python312Packages.art: 6.4 -> 6.5

+3 -3
+3 -3
pkgs/development/python-modules/art/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "art"; 10 - version = "6.4"; 10 + version = "6.5"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "sepandhaghighi"; 15 15 repo = "art"; 16 16 tag = "v${version}"; 17 - hash = "sha256-qA1fhqNJbhSOvsPSgbnuRTs40OJsn7tYHWzujN2RVK8="; 17 + hash = "sha256-ub+hvxYRZznql/GZjA6QXrdHUbM+QCVEYiQfQ6IOJKE="; 18 18 }; 19 19 20 20 build-system = [ setuptools ]; ··· 36 36 description = "ASCII art library for Python"; 37 37 mainProgram = "art"; 38 38 homepage = "https://github.com/sepandhaghighi/art"; 39 - changelog = "https://github.com/sepandhaghighi/art/blob/${src.rev}/CHANGELOG.md"; 39 + changelog = "https://github.com/sepandhaghighi/art/blob/${src.tag}/CHANGELOG.md"; 40 40 license = licenses.mit; 41 41 maintainers = with maintainers; [ figsoda ]; 42 42 };