tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.art: 6.4 -> 6.5
R. Ryantm
1 year ago
f6c0e884
3457f544
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
art
default.nix
+3
-3
pkgs/development/python-modules/art/default.nix
reviewed
···
7
7
8
8
buildPythonPackage rec {
9
9
pname = "art";
10
10
-
version = "6.4";
10
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
17
-
hash = "sha256-qA1fhqNJbhSOvsPSgbnuRTs40OJsn7tYHWzujN2RVK8=";
17
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
39
-
changelog = "https://github.com/sepandhaghighi/art/blob/${src.rev}/CHANGELOG.md";
39
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
};